stovecat commited on
Commit
32c2bf6
·
verified ·
1 Parent(s): 0d46f77

Upload RoboCasa pretrain65 raw_extracted and compressed Action2Code dataset

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. README.md +94 -0
  2. data/compressed.jsonl +0 -0
  3. data/raw_extracted.jsonl +0 -0
  4. summary.json +58 -0
  5. videos/compressed/00_AdjustToasterOvenTemperature.mp4 +3 -0
  6. videos/compressed/01_AdjustWaterTemperature.mp4 +3 -0
  7. videos/compressed/02_CheesyBread.mp4 +3 -0
  8. videos/compressed/03_CloseBlenderLid.mp4 +3 -0
  9. videos/compressed/04_CloseCabinet.mp4 +3 -0
  10. videos/compressed/05_CloseDishwasher.mp4 +3 -0
  11. videos/compressed/06_CloseDrawer.mp4 +3 -0
  12. videos/compressed/07_CloseElectricKettleLid.mp4 +3 -0
  13. videos/compressed/08_CloseFridge.mp4 +3 -0
  14. videos/compressed/09_CloseFridgeDrawer.mp4 +3 -0
  15. videos/compressed/10_CloseMicrowave.mp4 +3 -0
  16. videos/compressed/11_CloseOven.mp4 +3 -0
  17. videos/compressed/12_CloseStandMixerHead.mp4 +3 -0
  18. videos/compressed/13_CloseToasterOvenDoor.mp4 +3 -0
  19. videos/compressed/14_CoffeeServeMug.mp4 +3 -0
  20. videos/compressed/15_CoffeeSetupMug.mp4 +3 -0
  21. videos/compressed/16_LowerHeat.mp4 +3 -0
  22. videos/compressed/17_MakeIcedCoffee.mp4 +3 -0
  23. videos/compressed/18_NavigateKitchen.mp4 +3 -0
  24. videos/compressed/19_OpenBlenderLid.mp4 +3 -0
  25. videos/compressed/20_OpenCabinet.mp4 +3 -0
  26. videos/compressed/21_OpenDishwasher.mp4 +3 -0
  27. videos/compressed/22_OpenDrawer.mp4 +3 -0
  28. videos/compressed/23_OpenElectricKettleLid.mp4 +3 -0
  29. videos/compressed/24_OpenFridge.mp4 +3 -0
  30. videos/compressed/25_OpenFridgeDrawer.mp4 +3 -0
  31. videos/compressed/26_OpenMicrowave.mp4 +3 -0
  32. videos/compressed/27_OpenOven.mp4 +3 -0
  33. videos/compressed/28_OpenStandMixerHead.mp4 +3 -0
  34. videos/compressed/29_OpenToasterOvenDoor.mp4 +3 -0
  35. videos/compressed/30_PackDessert.mp4 +3 -0
  36. videos/compressed/31_PickPlaceCabinetToCounter.mp4 +3 -0
  37. videos/compressed/32_PickPlaceCounterToBlender.mp4 +3 -0
  38. videos/compressed/33_PickPlaceCounterToCabinet.mp4 +3 -0
  39. videos/compressed/34_PickPlaceCounterToDrawer.mp4 +3 -0
  40. videos/compressed/35_PickPlaceCounterToMicrowave.mp4 +3 -0
  41. videos/compressed/36_PickPlaceCounterToOven.mp4 +3 -0
  42. videos/compressed/37_PickPlaceCounterToSink.mp4 +3 -0
  43. videos/compressed/38_PickPlaceCounterToStandMixer.mp4 +3 -0
  44. videos/compressed/39_PickPlaceCounterToStove.mp4 +3 -0
  45. videos/compressed/40_PickPlaceCounterToToasterOven.mp4 +3 -0
  46. videos/compressed/41_PickPlaceDrawerToCounter.mp4 +3 -0
  47. videos/compressed/42_PickPlaceFridgeDrawerToShelf.mp4 +3 -0
  48. videos/compressed/43_PickPlaceFridgeShelfToDrawer.mp4 +3 -0
  49. videos/compressed/44_PickPlaceMicrowaveToCounter.mp4 +3 -0
  50. videos/compressed/45_PickPlaceSinkToCounter.mp4 +3 -0
README.md ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ configs:
3
+ - config_name: raw_extracted
4
+ data_files:
5
+ - split: train
6
+ path: data/raw_extracted.jsonl
7
+ - config_name: compressed
8
+ data_files:
9
+ - split: train
10
+ path: data/compressed.jsonl
11
+ ---
12
+
13
+ # RoboCasa Pretrain65 Action2Code: Raw Extracted and Compressed
14
+
15
+ Self-contained local dataset for the 65 RoboCasa pretrain atomic tasks. Each task has two rows:
16
+ `raw_extracted` for the pre-compression open-loop-joint code and `compressed` for the final source-compressed code.
17
+
18
+ Videos are copied into the dataset under `videos/<dataset_type>/` and use the latest whole-body-IK validation rerun.
19
+
20
+ ## Common Fields
21
+
22
+ - `dataset_type`: `raw_extracted` or `compressed`.
23
+ - `pretrain_task_id`, `task_name`, `task_description`.
24
+ - `initial_env_config_json`, `initial_scene_json`.
25
+ - `code`, `code_num_lines`, `code_num_nonblank_lines`, `code_char_count`.
26
+ - `motion_primitive_count`, `retained_waypoint_count`.
27
+ - `sim_success`: latest whole-body-IK validation success label when available.
28
+ - `sim_aggregate_success`: original aggregate success label for this dataset type.
29
+ - `sim_saved_summary_success`: saved summary success label when available.
30
+ - `sim_validation_success`: latest validation rerun success label.
31
+ - `video_relpath`, `video_available`, `video_bytes`.
32
+
33
+ ## Summary
34
+
35
+ ```json
36
+ {
37
+ "row_count": 130,
38
+ "types": {
39
+ "compressed": {
40
+ "fail_count": 7,
41
+ "failing_tasks": [
42
+ "OpenFridgeDrawer",
43
+ "OpenToasterOvenDoor",
44
+ "PickPlaceCabinetToCounter",
45
+ "PickPlaceCounterToBlender",
46
+ "PickPlaceCounterToStandMixer",
47
+ "TurnOffStove",
48
+ "TurnOnBlender"
49
+ ],
50
+ "max_code_char_count": 38438,
51
+ "max_code_num_lines": 412,
52
+ "mean_code_char_count": 4513.984615384616,
53
+ "mean_code_num_lines": 40.815384615384616,
54
+ "median_code_num_lines": 34,
55
+ "min_code_char_count": 1949,
56
+ "min_code_num_lines": 21,
57
+ "pass_count": 58,
58
+ "row_count": 65,
59
+ "video_count": 65
60
+ },
61
+ "raw_extracted": {
62
+ "fail_count": 16,
63
+ "failing_tasks": [
64
+ "CloseBlenderLid",
65
+ "CloseDishwasher",
66
+ "CloseOven",
67
+ "CloseToasterOvenDoor",
68
+ "CoffeeServeMug",
69
+ "MakeIcedCoffee",
70
+ "OpenFridge",
71
+ "OpenFridgeDrawer",
72
+ "OpenToasterOvenDoor",
73
+ "PickPlaceCabinetToCounter",
74
+ "PickPlaceCounterToBlender",
75
+ "PickPlaceCounterToDrawer",
76
+ "PickPlaceCounterToStandMixer",
77
+ "TurnOffStove",
78
+ "TurnOnBlender",
79
+ "TurnOnElectricKettle"
80
+ ],
81
+ "max_code_char_count": 52371,
82
+ "max_code_num_lines": 423,
83
+ "mean_code_char_count": 22911.8,
84
+ "mean_code_num_lines": 245.46153846153845,
85
+ "median_code_num_lines": 236,
86
+ "min_code_char_count": 8845,
87
+ "min_code_num_lines": 88,
88
+ "pass_count": 49,
89
+ "row_count": 65,
90
+ "video_count": 65
91
+ }
92
+ }
93
+ }
94
+ ```
data/compressed.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/raw_extracted.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
summary.json ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "row_count": 130,
3
+ "types": {
4
+ "compressed": {
5
+ "fail_count": 7,
6
+ "failing_tasks": [
7
+ "OpenFridgeDrawer",
8
+ "OpenToasterOvenDoor",
9
+ "PickPlaceCabinetToCounter",
10
+ "PickPlaceCounterToBlender",
11
+ "PickPlaceCounterToStandMixer",
12
+ "TurnOffStove",
13
+ "TurnOnBlender"
14
+ ],
15
+ "max_code_char_count": 38438,
16
+ "max_code_num_lines": 412,
17
+ "mean_code_char_count": 4513.984615384616,
18
+ "mean_code_num_lines": 40.815384615384616,
19
+ "median_code_num_lines": 34,
20
+ "min_code_char_count": 1949,
21
+ "min_code_num_lines": 21,
22
+ "pass_count": 58,
23
+ "row_count": 65,
24
+ "video_count": 65
25
+ },
26
+ "raw_extracted": {
27
+ "fail_count": 16,
28
+ "failing_tasks": [
29
+ "CloseBlenderLid",
30
+ "CloseDishwasher",
31
+ "CloseOven",
32
+ "CloseToasterOvenDoor",
33
+ "CoffeeServeMug",
34
+ "MakeIcedCoffee",
35
+ "OpenFridge",
36
+ "OpenFridgeDrawer",
37
+ "OpenToasterOvenDoor",
38
+ "PickPlaceCabinetToCounter",
39
+ "PickPlaceCounterToBlender",
40
+ "PickPlaceCounterToDrawer",
41
+ "PickPlaceCounterToStandMixer",
42
+ "TurnOffStove",
43
+ "TurnOnBlender",
44
+ "TurnOnElectricKettle"
45
+ ],
46
+ "max_code_char_count": 52371,
47
+ "max_code_num_lines": 423,
48
+ "mean_code_char_count": 22911.8,
49
+ "mean_code_num_lines": 245.46153846153845,
50
+ "median_code_num_lines": 236,
51
+ "min_code_char_count": 8845,
52
+ "min_code_num_lines": 88,
53
+ "pass_count": 49,
54
+ "row_count": 65,
55
+ "video_count": 65
56
+ }
57
+ }
58
+ }
videos/compressed/00_AdjustToasterOvenTemperature.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efdce68dba41c14e0806f80f8caf6272364cd96b1abd04f7a2bcdca73b025ba6
3
+ size 408410
videos/compressed/01_AdjustWaterTemperature.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f5ef47e40198eeb004e62f24c1367711cf9f1066d627a332ab524bd1c0ea5d9d
3
+ size 414760
videos/compressed/02_CheesyBread.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:062ec52ab26150310dcce9b0a3c5bc50ec2dcd26dd7d23c3824496899ba44961
3
+ size 376205
videos/compressed/03_CloseBlenderLid.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4caaee8434f6e8df5331fb27c8a060d480a9c17adccc9c0fe61247f4be559fe1
3
+ size 610250
videos/compressed/04_CloseCabinet.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b48934a5e4ec1edffd07bb48ea2bb468bdd83758f2e184949ed1041a7842a2a
3
+ size 478928
videos/compressed/05_CloseDishwasher.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c6f5b2686b6fd51eb84a8b3e09fbc2049efbb79dc2a491976fa67e89d8286d1
3
+ size 302135
videos/compressed/06_CloseDrawer.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86d9f727f470280dbf2ed8cc95e60736867cf71ed6cef43309ec6bffc660ab5a
3
+ size 210470
videos/compressed/07_CloseElectricKettleLid.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:028ccfe7c47b7c350f934e487f5443e1385b69d601bd5f5bc0224e831ac57f04
3
+ size 247672
videos/compressed/08_CloseFridge.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c82e94659ad7723d70929b6c5f29d27cb0787ec6398b4d5c9a99413e4bf7dfae
3
+ size 676973
videos/compressed/09_CloseFridgeDrawer.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6202fe2d7a4bdde97ee6c7f1a15b451de35bdf33507d52c9ca467498ea5f068a
3
+ size 302183
videos/compressed/10_CloseMicrowave.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e3c098c4647f78fc00f705306f5c7009d46fcf8dd4cd4471b5bddd87b6449d8
3
+ size 586916
videos/compressed/11_CloseOven.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:05eb9a0e9c7d8bbb643fb359eda66ddff51f2beba7a9839b8be028320d235294
3
+ size 334083
videos/compressed/12_CloseStandMixerHead.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07d2089b31af3460e8acdb5d9aa392127c8c92cbd83a395a08ca3e281ac6a960
3
+ size 353822
videos/compressed/13_CloseToasterOvenDoor.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f56ffb4c6a352f84ada9695089776c9bff8cff3af2f119076856e26dfd741b62
3
+ size 541939
videos/compressed/14_CoffeeServeMug.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb53d30f7308f2dafd329028c28e118139c03b13d439bfc751701318f7ad9454
3
+ size 267337
videos/compressed/15_CoffeeSetupMug.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:900a5f41fb4be19d5f7c6356048a3e30aceffcc5be0e59da355491d1dec71945
3
+ size 386962
videos/compressed/16_LowerHeat.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:afe2df01d1a3b894fef80b8327fe777407dab02fadce3759bd1ec518aa8549e5
3
+ size 293905
videos/compressed/17_MakeIcedCoffee.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:549de627567ed1328caf090e48ae5a44bc3cd1474d47cb51f42917c9349e1d6d
3
+ size 650699
videos/compressed/18_NavigateKitchen.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67b710ccc5f29f03ad555bab1486bcfee974eb4c8baf62cf19ffeef846d5d999
3
+ size 666637
videos/compressed/19_OpenBlenderLid.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b4a56682910841a2826191064fd3284b6b73378f96f19838d177702a7993151
3
+ size 439119
videos/compressed/20_OpenCabinet.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4fb667da28d008aaa893f239950498f8aef0b01170fff4de2cd6e3d2a7788b2
3
+ size 517596
videos/compressed/21_OpenDishwasher.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18ff5ed417b1a9e07cc2d17328df2dd152e66152e5f68ad233fb8c4733a88d0e
3
+ size 213243
videos/compressed/22_OpenDrawer.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:128dc660f7ff053c43ec7ce4b2ab6a08435e431bb70c8024b0a0f3c3ae6cc961
3
+ size 287465
videos/compressed/23_OpenElectricKettleLid.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8874f2aabbe92e648dbfe8368ce6f9234b96ea06c8b45bf1edb548c6761a7f33
3
+ size 162485
videos/compressed/24_OpenFridge.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:373f99584cbdd2b0be617ca642c6922ad59acab25670067c192cf4029fea3ea2
3
+ size 409080
videos/compressed/25_OpenFridgeDrawer.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc3cefe73480d8af64e092907f879fc59b3301b3abfa325b5f97cd44480747fe
3
+ size 328081
videos/compressed/26_OpenMicrowave.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:061a4b8e111537d876f4c83e6c353608d83b8d42bab59ce48c90da4c71fa4bdf
3
+ size 629120
videos/compressed/27_OpenOven.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ad80af301c44ae49c62c27471150c0cc16232e3ac6998c64be8a0c082b577f3
3
+ size 352141
videos/compressed/28_OpenStandMixerHead.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2213938a91a5e3153ebdfaa591d6ba01fee6d056a4598016560e70e0e8dc7496
3
+ size 304236
videos/compressed/29_OpenToasterOvenDoor.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e22b006d8e9bbeb599b744a93bc717281d3c1d4d9f263e6a2c281e6f88abc13a
3
+ size 277520
videos/compressed/30_PackDessert.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d3820a5c00d8170d2a02f99bd6931e5115b900357ae8f85d17073eb7230f39c
3
+ size 472922
videos/compressed/31_PickPlaceCabinetToCounter.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:15b92bef73b7f520221c6eb0cbd18b6495c2779ca256e95a9f69b0252d558302
3
+ size 613821
videos/compressed/32_PickPlaceCounterToBlender.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6dca1139ce1c9f579092a74f2b68cfcda4b17c845160bccbf69c673bf9214851
3
+ size 484979
videos/compressed/33_PickPlaceCounterToCabinet.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd70e04b5d4ae90051561c86885bdbaf03a374c37075a0314dc27d839dd046a4
3
+ size 512612
videos/compressed/34_PickPlaceCounterToDrawer.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:194251b762d8fc5fb9cb8d76bfd52696163a0f36c62457a022ae4b1976f9d556
3
+ size 597178
videos/compressed/35_PickPlaceCounterToMicrowave.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0240b9d37c242fcda67f3f4557e3fa43840dac6b14da7437bbd5feed4c7f902
3
+ size 652522
videos/compressed/36_PickPlaceCounterToOven.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3bec54aced0a71441beb6743402a24a0bca9b3635bb538f095d5a27eb4e818e2
3
+ size 824266
videos/compressed/37_PickPlaceCounterToSink.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7bca877905952a8ecb6f42f9dd49bfa0389bf1381ef805861cd30d79aa3c5f0f
3
+ size 535148
videos/compressed/38_PickPlaceCounterToStandMixer.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d8127ca951843e4a909fc25ca0431bc4dd79084a3e6882f5936b86b97026503a
3
+ size 374323
videos/compressed/39_PickPlaceCounterToStove.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a211ee61a455b37cc12e15ad63566c65c08654ffe4beb06717118296132c5be
3
+ size 520505
videos/compressed/40_PickPlaceCounterToToasterOven.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a90495aeb9dcfd1583a33885b6f9be41e2c38c6d0b70d16f4d4c0a5b1f15cd4f
3
+ size 495720
videos/compressed/41_PickPlaceDrawerToCounter.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:16987cdc4e72ea973d36733dc6cd176c63366abcd3956ed1836dfdfeed5f80be
3
+ size 1243175
videos/compressed/42_PickPlaceFridgeDrawerToShelf.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7239f603abb4c1e7469a98c9157f700423c75a013185c28d69b4259407bd3411
3
+ size 341142
videos/compressed/43_PickPlaceFridgeShelfToDrawer.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f87e3546649511721c0282c90d2d0e2b6ff9a127433574e6545799532bab458
3
+ size 785452
videos/compressed/44_PickPlaceMicrowaveToCounter.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:259bda7af8a6ebb0b8628cd3fcf6b0585e8c44f9ca80bb972f4840f6d5c6d80c
3
+ size 1162178
videos/compressed/45_PickPlaceSinkToCounter.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aadb0fe919d9ba328300db41e727954e9d011b08f027941c945e1ab4c621d015
3
+ size 391223