wertania commited on
Commit
26b4a16
·
verified ·
1 Parent(s): fd5000c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +179 -20
README.md CHANGED
@@ -1,24 +1,183 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: video
5
- dtype: video
6
- - name: label
7
- dtype:
8
- class_label:
9
- names:
10
- '0': observation.images.main
11
- '1': observation.images.secondary_0
12
- '2': observation.images.secondary_1
13
- splits:
14
- - name: train
15
- num_bytes: 30342563
16
- num_examples: 144
17
- download_size: 4513
18
- dataset_size: 30342563
19
  configs:
20
  - config_name: default
21
- data_files:
22
- - split: train
23
- path: data/train-*
24
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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](https://github.com/huggingface/lerobot).
13
+
14
+ ## Dataset Description
15
+
16
+
17
+
18
+ - **Homepage:** [More Information Needed]
19
+ - **Paper:** [More Information Needed]
20
+ - **License:** apache-2.0
21
+
22
+ ## Dataset Structure
23
+
24
+ [meta/info.json](meta/info.json):
25
+ ```json
26
+ {
27
+ "robot_type": "so-100",
28
+ "codebase_version": "v3.0",
29
+ "total_episodes": 48,
30
+ "total_frames": 6119,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "fps": 30,
34
+ "splits": {
35
+ "train": "0:48"
36
+ },
37
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
38
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
39
+ "features": {
40
+ "action": {
41
+ "dtype": "float32",
42
+ "shape": [
43
+ 6
44
+ ],
45
+ "names": [
46
+ "motor_1",
47
+ "motor_2",
48
+ "motor_3",
49
+ "motor_4",
50
+ "motor_5",
51
+ "motor_6"
52
+ ],
53
+ "fps": 30
54
+ },
55
+ "observation.state": {
56
+ "dtype": "float32",
57
+ "shape": [
58
+ 6
59
+ ],
60
+ "names": [
61
+ "motor_1",
62
+ "motor_2",
63
+ "motor_3",
64
+ "motor_4",
65
+ "motor_5",
66
+ "motor_6"
67
+ ],
68
+ "fps": 30
69
+ },
70
+ "timestamp": {
71
+ "dtype": "float32",
72
+ "shape": [
73
+ 1
74
+ ],
75
+ "names": null,
76
+ "fps": 30
77
+ },
78
+ "episode_index": {
79
+ "dtype": "int64",
80
+ "shape": [
81
+ 1
82
+ ],
83
+ "names": null,
84
+ "fps": 30
85
+ },
86
+ "frame_index": {
87
+ "dtype": "int64",
88
+ "shape": [
89
+ 1
90
+ ],
91
+ "names": null,
92
+ "fps": 30
93
+ },
94
+ "task_index": {
95
+ "dtype": "int64",
96
+ "shape": [
97
+ 1
98
+ ],
99
+ "names": null,
100
+ "fps": 30
101
+ },
102
+ "index": {
103
+ "dtype": "int64",
104
+ "shape": [
105
+ 1
106
+ ],
107
+ "names": null,
108
+ "fps": 30
109
+ },
110
+ "observation.images.main": {
111
+ "dtype": "video",
112
+ "shape": [
113
+ 240,
114
+ 320,
115
+ 3
116
+ ],
117
+ "names": [
118
+ "height",
119
+ "width",
120
+ "channel"
121
+ ],
122
+ "info": {
123
+ "video.fps": 30,
124
+ "video.codec": "avc1",
125
+ "video.pix_fmt": "yuv420p",
126
+ "video.is_depth_map": false,
127
+ "has_audio": false
128
+ }
129
+ },
130
+ "observation.images.secondary_0": {
131
+ "dtype": "video",
132
+ "shape": [
133
+ 240,
134
+ 320,
135
+ 3
136
+ ],
137
+ "names": [
138
+ "height",
139
+ "width",
140
+ "channel"
141
+ ],
142
+ "info": {
143
+ "video.fps": 30,
144
+ "video.codec": "avc1",
145
+ "video.pix_fmt": "yuv420p",
146
+ "video.is_depth_map": false,
147
+ "has_audio": false
148
+ }
149
+ },
150
+ "observation.images.secondary_1": {
151
+ "dtype": "video",
152
+ "shape": [
153
+ 240,
154
+ 320,
155
+ 3
156
+ ],
157
+ "names": [
158
+ "height",
159
+ "width",
160
+ "channel"
161
+ ],
162
+ "info": {
163
+ "video.fps": 30,
164
+ "video.codec": "avc1",
165
+ "video.pix_fmt": "yuv420p",
166
+ "video.is_depth_map": false,
167
+ "has_audio": false
168
+ }
169
+ }
170
+ },
171
+ "data_files_size_in_mb": 100,
172
+ "video_files_size_in_mb": 500
173
+ }
174
+ ```
175
+
176
+
177
+ ## Citation
178
+
179
+ **BibTeX:**
180
+
181
+ ```bibtex
182
+ [More Information Needed]
183
+ ```