jackvial commited on
Commit
83bb790
·
verified ·
1 Parent(s): 35f0f0f

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,182 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ configs:
8
+ - config_name: default
9
+ data_files: data/*/*.parquet
10
+ ---
11
+
12
+ This dataset was created using [LeRobot Data Studio](https://github.com/jackvial/assembler0/tree/main/packages/lerobot-data-studio).
13
+
14
+ ## Dataset Description
15
+
16
+ - **Homepage:** [More Information Needed]
17
+ - **Paper:** [More Information Needed]
18
+ - **License:** apache-2.0
19
+
20
+ ## Dataset Structure
21
+
22
+ [meta/info.json](meta/info.json):
23
+ ```json
24
+ {
25
+ "codebase_version": "v2.1",
26
+ "robot_type": "koch_screwdriver_follower",
27
+ "total_episodes": 4,
28
+ "total_frames": 976,
29
+ "total_tasks": 1,
30
+ "total_videos": 15,
31
+ "total_chunks": 1,
32
+ "chunks_size": 1000,
33
+ "fps": 30,
34
+ "splits": {
35
+ "train": "0:4"
36
+ },
37
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
38
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
39
+ "features": {
40
+ "action": {
41
+ "dtype": "float32",
42
+ "shape": [
43
+ 6
44
+ ],
45
+ "names": [
46
+ "shoulder_pan.pos",
47
+ "shoulder_lift.pos",
48
+ "elbow_flex.pos",
49
+ "wrist_flex.pos",
50
+ "wrist_roll.pos",
51
+ "screwdriver.vel"
52
+ ]
53
+ },
54
+ "observation.state": {
55
+ "dtype": "float32",
56
+ "shape": [
57
+ 6
58
+ ],
59
+ "names": [
60
+ "shoulder_pan.pos",
61
+ "shoulder_lift.pos",
62
+ "elbow_flex.pos",
63
+ "wrist_flex.pos",
64
+ "wrist_roll.pos",
65
+ "screwdriver.vel"
66
+ ]
67
+ },
68
+ "observation.images.screwdriver": {
69
+ "dtype": "video",
70
+ "shape": [
71
+ 600,
72
+ 800,
73
+ 3
74
+ ],
75
+ "names": [
76
+ "height",
77
+ "width",
78
+ "channels"
79
+ ],
80
+ "info": {
81
+ "video.height": 600,
82
+ "video.width": 800,
83
+ "video.codec": "av1",
84
+ "video.pix_fmt": "yuv420p",
85
+ "video.is_depth_map": false,
86
+ "video.fps": 30,
87
+ "video.channels": 3,
88
+ "has_audio": false
89
+ }
90
+ },
91
+ "observation.images.side": {
92
+ "dtype": "video",
93
+ "shape": [
94
+ 600,
95
+ 800,
96
+ 3
97
+ ],
98
+ "names": [
99
+ "height",
100
+ "width",
101
+ "channels"
102
+ ],
103
+ "info": {
104
+ "video.height": 600,
105
+ "video.width": 800,
106
+ "video.codec": "av1",
107
+ "video.pix_fmt": "yuv420p",
108
+ "video.is_depth_map": false,
109
+ "video.fps": 30,
110
+ "video.channels": 3,
111
+ "has_audio": false
112
+ }
113
+ },
114
+ "observation.images.top": {
115
+ "dtype": "video",
116
+ "shape": [
117
+ 600,
118
+ 800,
119
+ 3
120
+ ],
121
+ "names": [
122
+ "height",
123
+ "width",
124
+ "channels"
125
+ ],
126
+ "info": {
127
+ "video.height": 600,
128
+ "video.width": 800,
129
+ "video.codec": "av1",
130
+ "video.pix_fmt": "yuv420p",
131
+ "video.is_depth_map": false,
132
+ "video.fps": 30,
133
+ "video.channels": 3,
134
+ "has_audio": false
135
+ }
136
+ },
137
+ "timestamp": {
138
+ "dtype": "float32",
139
+ "shape": [
140
+ 1
141
+ ],
142
+ "names": null
143
+ },
144
+ "frame_index": {
145
+ "dtype": "int64",
146
+ "shape": [
147
+ 1
148
+ ],
149
+ "names": null
150
+ },
151
+ "episode_index": {
152
+ "dtype": "int64",
153
+ "shape": [
154
+ 1
155
+ ],
156
+ "names": null
157
+ },
158
+ "index": {
159
+ "dtype": "int64",
160
+ "shape": [
161
+ 1
162
+ ],
163
+ "names": null
164
+ },
165
+ "task_index": {
166
+ "dtype": "int64",
167
+ "shape": [
168
+ 1
169
+ ],
170
+ "names": null
171
+ }
172
+ }
173
+ }
174
+ ```
175
+
176
+ ## Citation
177
+
178
+ **BibTeX:**
179
+
180
+ ```bibtex
181
+ [More Information Needed]
182
+ ```
data/chunk-000/episode_000000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0b3ce9c3a21ba1b2dc7bfb8b500556fbabcb00934b606a36868283b22837a04
3
+ size 13200
data/chunk-000/episode_000001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c365e5b8525a85028b9e995c8ec883566bec21098dfc2461b88d178da4180310
3
+ size 14135
data/chunk-000/episode_000002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86b636a1443194d6e76a5b84b3b09e3bbc27c38807370256da35f25b9adba7ad
3
+ size 15087
data/chunk-000/episode_000003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2de1a280a88c221f0a2f74aa6900fec1b0a463dc3886b68609cb5d87d9d3055b
3
+ size 14395
meta/episodes.jsonl ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {"episode_index": 0, "tasks": ["Move towards the silver screw in the orange panel. Then place the screwdriver bit on the screw, and turn the screwdriver bit clockwise until the screw is has been fully screwed in."], "length": 244}
2
+ {"episode_index": 1, "tasks": ["Move towards the silver screw in the orange panel. Then place the screwdriver bit on the screw, and turn the screwdriver bit clockwise until the screw is has been fully screwed in."], "length": 244}
3
+ {"episode_index": 2, "tasks": ["Move towards the silver screw in the orange panel. Then place the screwdriver bit on the screw, and turn the screwdriver bit clockwise until the screw is has been fully screwed in."], "length": 244}
4
+ {"episode_index": 3, "tasks": ["Move towards the silver screw in the orange panel. Then place the screwdriver bit on the screw, and turn the screwdriver bit clockwise until the screw is has been fully screwed in."], "length": 244}
meta/episodes_stats.jsonl ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {"episode_index": 0, "stats": {"action": {"min": [-4.810744762420654, -100.0, -67.28260803222656, -26.058324813842773, -5.201465129852295, 0.0], "max": [2.759462833404541, -38.61551284790039, -12.717391014099121, 71.77798461914062, 5.103785037994385, 5.0], "mean": [1.2378159761428833, -64.01022338867188, -43.66265869140625, 24.88277816772461, 1.4513905048370361, 0.6803278923034668], "std": [1.7239296436309814, 17.429086685180664, 20.918203353881836, 37.76675033569336, 2.700734853744507, 1.5695163011550903], "count": [244]}, "observation.state": {"min": [-4.9084248542785645, -95.11278533935547, -74.67018127441406, -16.769596099853516, -4.713064670562744, -1.0], "max": [2.612942695617676, -36.842105865478516, -17.994722366333008, 70.35629272460938, 4.3223443031311035, 7.0], "mean": [1.28885817527771, -61.71956253051758, -47.19887161254883, 26.836585998535156, 1.2550297975540161, 1.450819730758667], "std": [1.7149206399917603, 16.83479881286621, 19.058198928833008, 35.145111083984375, 2.638856887817383, 1.5073727369308472], "count": [244]}, "observation.images.screwdriver": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3031843096405229]], [[0.26350789215686277]], [[0.24719958946078432]]], "std": [[[0.2870705928877249]], [[0.271118210311975]], [[0.25047383848990984]]], "count": [100]}, "observation.images.side": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.1377845894607843]], [[0.1342639848856209]], [[0.1264599080882353]]], "std": [[[0.19691955722003637]], [[0.18791755020695258]], [[0.13222372296747006]]], "count": [100]}, "observation.images.top": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.2772173958333333]], [[0.2834379758986928]], [[0.29042185049019603]]], "std": [[[0.295038471985845]], [[0.29802534713344464]], [[0.23036034838342115]]], "count": [100]}, "timestamp": {"min": [0.0], "max": [8.1], "mean": [4.05], "std": [2.3478713763747794], "count": [244]}, "frame_index": {"min": [0], "max": [243], "mean": [121.5], "std": [70.43614129124337], "count": [244]}, "episode_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [244]}, "index": {"min": [0], "max": [243], "mean": [121.5], "std": [70.43614129124337], "count": [244]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [244]}}}
2
+ {"episode_index": 1, "stats": {"action": {"min": [-3.7362637519836426, -99.66638946533203, -72.71739196777344, -38.57008361816406, -5.006104946136475, 0.0], "max": [2.17338228225708, -41.61801528930664, -16.84782600402832, 76.38758087158203, 7.106226921081543, 195.0], "mean": [0.3725050091743469, -59.620811462402344, -45.569278717041016, 14.714780807495117, 0.5048137307167053, 49.64754104614258], "std": [1.2390787601470947, 16.37192726135254, 12.862574577331543, 42.33804702758789, 2.0614349842071533, 81.17689514160156], "count": [244]}, "observation.state": {"min": [-3.5409035682678223, -94.92481231689453, -74.67018127441406, -28.456056594848633, -4.9572649002075195, -1.0], "max": [2.857142925262451, -43.04511260986328, -23.693931579589844, 75.20189666748047, 6.324786186218262, 200.0], "mean": [0.5746702551841736, -57.89548873901367, -47.422916412353516, 15.598684310913086, 0.5900840163230896, 50.065574645996094], "std": [1.328128695487976, 15.145395278930664, 12.3646240234375, 41.51424026489258, 2.066413164138794, 81.10090637207031], "count": [244]}, "observation.images.screwdriver": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.3028080535130719]], [[0.2561237704248366]], [[0.24185684027777776]]], "std": [[[0.2871227567372367]], [[0.2675127524079446]], [[0.24577521513555306]]], "count": [100]}, "observation.images.side": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.1346694158496732]], [[0.13395586397058826]], [[0.12259590890522876]]], "std": [[[0.19556116169232973]], [[0.18725466650520434]], [[0.1298411442298355]]], "count": [100]}, "observation.images.top": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.2755860906862745]], [[0.28140743055555556]], [[0.2836739215686274]]], "std": [[[0.29580972084567736]], [[0.2993856277608453]], [[0.233483267509983]]], "count": [100]}, "timestamp": {"min": [0.0], "max": [8.1], "mean": [4.05], "std": [2.3478713763747794], "count": [244]}, "frame_index": {"min": [0], "max": [243], "mean": [121.5], "std": [70.43614129124337], "count": [244]}, "episode_index": {"min": [1], "max": [1], "mean": [1.0], "std": [0.0], "count": [244]}, "index": {"min": [244], "max": [487], "mean": [365.5], "std": [70.43614129124337], "count": [244]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [244]}}}
3
+ {"episode_index": 2, "stats": {"action": {"min": [-4.566544532775879, -100.0, -61.41304397583008, -31.79680061340332, -9.40170955657959, 0.0], "max": [3.1501832008361816, -44.28690719604492, -23.2608699798584, 75.25870513916016, 7.008546829223633, 180.0], "mean": [0.3793109655380249, -60.65503692626953, -42.07322311401367, -2.3140461444854736, -0.42714986205101013, 46.34836196899414], "std": [1.888648509979248, 16.205717086791992, 10.577144622802734, 35.78639602661133, 2.78208589553833, 71.82118225097656], "count": [244]}, "observation.state": {"min": [-4.371184349060059, -95.11278533935547, -62.42744064331055, -29.691211700439453, -9.157508850097656, -1.0], "max": [2.5152626037597656, -44.17293167114258, -28.126649856567383, 74.34679412841797, 6.1782660484313965, 186.0], "mean": [0.572270393371582, -58.860050201416016, -43.68525314331055, -0.7238853573799133, 0.11789697408676147, 46.90983581542969], "std": [1.7167162895202637, 14.982304573059082, 9.26324462890625, 35.21942901611328, 2.507227659225464, 71.60322570800781], "count": [244]}, "observation.images.screwdriver": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.29810939746732024]], [[0.2540806495098039]], [[0.22997116625816993]]], "std": [[[0.28829346532490147]], [[0.2662884077680393]], [[0.23958984633012956]]], "count": [100]}, "observation.images.side": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.132026256127451]], [[0.1319379616013072]], [[0.12006059640522876]]], "std": [[[0.1953987827258696]], [[0.1866090808385372]], [[0.13036694243554087]]], "count": [100]}, "observation.images.top": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.2753685804738562]], [[0.28239632352941174]], [[0.3099193035130719]]], "std": [[[0.2968281917367823]], [[0.29996832823109365]], [[0.23380940710595585]]], "count": [100]}, "timestamp": {"min": [0.0], "max": [8.1], "mean": [4.05], "std": [2.3478713763747794], "count": [244]}, "frame_index": {"min": [0], "max": [243], "mean": [121.5], "std": [70.43614129124337], "count": [244]}, "episode_index": {"min": [2], "max": [2], "mean": [2.0], "std": [0.0], "count": [244]}, "index": {"min": [488], "max": [731], "mean": [609.5], "std": [70.43614129124337], "count": [244]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [244]}}}
4
+ {"episode_index": 3, "stats": {"action": {"min": [-4.761904716491699, -93.32777404785156, -63.58695602416992, -28.410160064697266, -8.522588729858398, 0.0], "max": [2.2710623741149902, -47.95663070678711, -12.17391300201416, 88.99341583251953, 5.787545680999756, 195.0], "mean": [0.13130752742290497, -61.949180603027344, -43.309444427490234, 6.998449325561523, -1.1325279474258423, 52.88114929199219], "std": [1.7252137660980225, 13.030898094177246, 12.461689949035645, 43.529361724853516, 2.326493263244629, 79.59815216064453], "count": [244]}, "observation.state": {"min": [-4.664224624633789, -87.40601348876953, -64.11609649658203, -25.890735626220703, -8.473748207092285, 0.0], "max": [2.17338228225708, -47.744361877441406, -18.2058048248291, 86.60332489013672, 5.05494499206543, 199.0], "mean": [0.38871830701828003, -59.62110900878906, -45.083740234375, 9.07130241394043, -0.7087814211845398, 53.27049255371094], "std": [1.6832515001296997, 11.620162963867188, 11.090693473815918, 42.46004867553711, 2.117687702178955, 79.46800994873047], "count": [244]}, "observation.images.screwdriver": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.29675217116013075]], [[0.24821976511437907]], [[0.23676996323529412]]], "std": [[[0.2815468377496675]], [[0.2619910836732794]], [[0.23855658540823155]]], "count": [100]}, "observation.images.side": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.1298689195261438]], [[0.13216922589869282]], [[0.11823181781045751]]], "std": [[[0.19431498306558256]], [[0.1864675919181308]], [[0.12907310818025744]]], "count": [100]}, "observation.images.top": {"min": [[[0.0]], [[0.0]], [[0.0]]], "max": [[[1.0]], [[1.0]], [[1.0]]], "mean": [[[0.2756161887254902]], [[0.2826120526960784]], [[0.3101423120915033]]], "std": [[[0.2973834559347747]], [[0.3005375833853699]], [[0.23392268611650557]]], "count": [100]}, "timestamp": {"min": [0.0], "max": [8.1], "mean": [4.05], "std": [2.3478713763747794], "count": [244]}, "frame_index": {"min": [0], "max": [243], "mean": [121.5], "std": [70.43614129124337], "count": [244]}, "episode_index": {"min": [4], "max": [4], "mean": [4.0], "std": [0.0], "count": [244]}, "index": {"min": [976], "max": [1219], "mean": [1097.5], "std": [70.43614129124337], "count": [244]}, "task_index": {"min": [0], "max": [0], "mean": [0.0], "std": [0.0], "count": [244]}}}
meta/info.json ADDED
@@ -0,0 +1,150 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "codebase_version": "v2.1",
3
+ "robot_type": "koch_screwdriver_follower",
4
+ "total_episodes": 4,
5
+ "total_frames": 976,
6
+ "total_tasks": 1,
7
+ "total_videos": 15,
8
+ "total_chunks": 1,
9
+ "chunks_size": 1000,
10
+ "fps": 30,
11
+ "splits": {
12
+ "train": "0:4"
13
+ },
14
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
15
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
16
+ "features": {
17
+ "action": {
18
+ "dtype": "float32",
19
+ "shape": [
20
+ 6
21
+ ],
22
+ "names": [
23
+ "shoulder_pan.pos",
24
+ "shoulder_lift.pos",
25
+ "elbow_flex.pos",
26
+ "wrist_flex.pos",
27
+ "wrist_roll.pos",
28
+ "screwdriver.vel"
29
+ ]
30
+ },
31
+ "observation.state": {
32
+ "dtype": "float32",
33
+ "shape": [
34
+ 6
35
+ ],
36
+ "names": [
37
+ "shoulder_pan.pos",
38
+ "shoulder_lift.pos",
39
+ "elbow_flex.pos",
40
+ "wrist_flex.pos",
41
+ "wrist_roll.pos",
42
+ "screwdriver.vel"
43
+ ]
44
+ },
45
+ "observation.images.screwdriver": {
46
+ "dtype": "video",
47
+ "shape": [
48
+ 600,
49
+ 800,
50
+ 3
51
+ ],
52
+ "names": [
53
+ "height",
54
+ "width",
55
+ "channels"
56
+ ],
57
+ "info": {
58
+ "video.height": 600,
59
+ "video.width": 800,
60
+ "video.codec": "av1",
61
+ "video.pix_fmt": "yuv420p",
62
+ "video.is_depth_map": false,
63
+ "video.fps": 30,
64
+ "video.channels": 3,
65
+ "has_audio": false
66
+ }
67
+ },
68
+ "observation.images.side": {
69
+ "dtype": "video",
70
+ "shape": [
71
+ 600,
72
+ 800,
73
+ 3
74
+ ],
75
+ "names": [
76
+ "height",
77
+ "width",
78
+ "channels"
79
+ ],
80
+ "info": {
81
+ "video.height": 600,
82
+ "video.width": 800,
83
+ "video.codec": "av1",
84
+ "video.pix_fmt": "yuv420p",
85
+ "video.is_depth_map": false,
86
+ "video.fps": 30,
87
+ "video.channels": 3,
88
+ "has_audio": false
89
+ }
90
+ },
91
+ "observation.images.top": {
92
+ "dtype": "video",
93
+ "shape": [
94
+ 600,
95
+ 800,
96
+ 3
97
+ ],
98
+ "names": [
99
+ "height",
100
+ "width",
101
+ "channels"
102
+ ],
103
+ "info": {
104
+ "video.height": 600,
105
+ "video.width": 800,
106
+ "video.codec": "av1",
107
+ "video.pix_fmt": "yuv420p",
108
+ "video.is_depth_map": false,
109
+ "video.fps": 30,
110
+ "video.channels": 3,
111
+ "has_audio": false
112
+ }
113
+ },
114
+ "timestamp": {
115
+ "dtype": "float32",
116
+ "shape": [
117
+ 1
118
+ ],
119
+ "names": null
120
+ },
121
+ "frame_index": {
122
+ "dtype": "int64",
123
+ "shape": [
124
+ 1
125
+ ],
126
+ "names": null
127
+ },
128
+ "episode_index": {
129
+ "dtype": "int64",
130
+ "shape": [
131
+ 1
132
+ ],
133
+ "names": null
134
+ },
135
+ "index": {
136
+ "dtype": "int64",
137
+ "shape": [
138
+ 1
139
+ ],
140
+ "names": null
141
+ },
142
+ "task_index": {
143
+ "dtype": "int64",
144
+ "shape": [
145
+ 1
146
+ ],
147
+ "names": null
148
+ }
149
+ }
150
+ }
meta/tasks.jsonl ADDED
@@ -0,0 +1 @@
 
 
1
+ {"task_index": 0, "task": "Move towards the silver screw in the orange panel. Then place the screwdriver bit on the screw, and turn the screwdriver bit clockwise until the screw is has been fully screwed in."}
videos/chunk-000/observation.images.screwdriver/episode_000000.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a96add40b9447545e1e37f134ddb7d5ce73f6962b53bb66e0e1c4d411d1a37c8
3
+ size 6271477
videos/chunk-000/observation.images.screwdriver/episode_000001.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a590dc07ff612ded4c9dedeb60be0a206a2c5e71b966d08ddfcb4e15f367cd54
3
+ size 6228334
videos/chunk-000/observation.images.screwdriver/episode_000002.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cff9b4534a6a64bef7eb8e3ce47f31be1f081f0671e1773a7e0124f3d2b96461
3
+ size 6025816
videos/chunk-000/observation.images.screwdriver/episode_000003.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c737fb27532ac4947f9a3c059d075611f0291eaa9af3724a13f331a47e71dce
3
+ size 6158373
videos/chunk-000/observation.images.side/episode_000000.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad8a36ed59193022ee169f06ddc4c39d883eed186ddf509888cf93f7775587f3
3
+ size 6844211
videos/chunk-000/observation.images.side/episode_000001.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e690409de628e7d00aa861197405e701b3f722afb042f7b7c419c882c12c199d
3
+ size 6722409
videos/chunk-000/observation.images.side/episode_000002.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:803e9b88db448500ae781c4e9b364afddc967572f87117597265d3a6562bd21d
3
+ size 6771944
videos/chunk-000/observation.images.side/episode_000003.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb1c90bfed081e872565330b7e9da9050dc37e0f09dba45681ea224d944700bf
3
+ size 6615011
videos/chunk-000/observation.images.top/episode_000000.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0a0ad4c532756a4e50c644db63bc3065d236615ff3ef5763a51ef175ee53ee3
3
+ size 5370660
videos/chunk-000/observation.images.top/episode_000001.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2cb3455e634d5d81f788bea69c2d4b18f04260f117f367b10c6b6ef18fad2c29
3
+ size 5380966
videos/chunk-000/observation.images.top/episode_000002.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4700d9ef6ce652ca1fa3663ae3dc7126196b51331a5b11427dcee60e4145e531
3
+ size 5546272
videos/chunk-000/observation.images.top/episode_000003.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c640727258643da6b2502059ce0f0680e3a3b5b369673ebcdfb147befb7e977
3
+ size 5493990