Beegbrain commited on
Commit
8818168
·
verified ·
1 Parent(s): 0d44834

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +168 -0
README.md ADDED
@@ -0,0 +1,168 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - moss
8
+ - so100
9
+ - stack cubes
10
+ - stack
11
+ - cube
12
+ - cubes
13
+ configs:
14
+ - config_name: default
15
+ data_files: data/*/*.parquet
16
+ ---
17
+
18
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
19
+
20
+ ## Dataset Description
21
+
22
+
23
+
24
+ - **Homepage:** [More Information Needed]
25
+ - **Paper:** [More Information Needed]
26
+ - **License:** apache-2.0
27
+
28
+ ## Dataset Structure
29
+
30
+ [meta/info.json](meta/info.json):
31
+ ```json
32
+ {
33
+ "codebase_version": "v2.1",
34
+ "robot_type": "moss",
35
+ "total_episodes": 30,
36
+ "total_frames": 7244,
37
+ "total_tasks": 1,
38
+ "total_videos": 60,
39
+ "total_chunks": 1,
40
+ "chunks_size": 1000,
41
+ "fps": 20,
42
+ "splits": {
43
+ "train": "0:30"
44
+ },
45
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
46
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
47
+ "features": {
48
+ "action": {
49
+ "dtype": "float32",
50
+ "shape": [
51
+ 6
52
+ ],
53
+ "names": [
54
+ "main_shoulder_pan",
55
+ "main_shoulder_lift",
56
+ "main_elbow_flex",
57
+ "main_wrist_flex",
58
+ "main_wrist_roll",
59
+ "main_gripper"
60
+ ]
61
+ },
62
+ "observation.state": {
63
+ "dtype": "float32",
64
+ "shape": [
65
+ 6
66
+ ],
67
+ "names": [
68
+ "main_shoulder_pan",
69
+ "main_shoulder_lift",
70
+ "main_elbow_flex",
71
+ "main_wrist_flex",
72
+ "main_wrist_roll",
73
+ "main_gripper"
74
+ ]
75
+ },
76
+ "observation.images.front": {
77
+ "dtype": "video",
78
+ "shape": [
79
+ 480,
80
+ 640,
81
+ 3
82
+ ],
83
+ "names": [
84
+ "height",
85
+ "width",
86
+ "channels"
87
+ ],
88
+ "info": {
89
+ "video.fps": 20.0,
90
+ "video.height": 480,
91
+ "video.width": 640,
92
+ "video.channels": 3,
93
+ "video.codec": "h264",
94
+ "video.pix_fmt": "yuv420p",
95
+ "video.is_depth_map": false,
96
+ "has_audio": false
97
+ }
98
+ },
99
+ "observation.images.back": {
100
+ "dtype": "video",
101
+ "shape": [
102
+ 480,
103
+ 640,
104
+ 3
105
+ ],
106
+ "names": [
107
+ "height",
108
+ "width",
109
+ "channels"
110
+ ],
111
+ "info": {
112
+ "video.fps": 20.0,
113
+ "video.height": 480,
114
+ "video.width": 640,
115
+ "video.channels": 3,
116
+ "video.codec": "h264",
117
+ "video.pix_fmt": "yuv420p",
118
+ "video.is_depth_map": false,
119
+ "has_audio": false
120
+ }
121
+ },
122
+ "timestamp": {
123
+ "dtype": "float32",
124
+ "shape": [
125
+ 1
126
+ ],
127
+ "names": null
128
+ },
129
+ "frame_index": {
130
+ "dtype": "int64",
131
+ "shape": [
132
+ 1
133
+ ],
134
+ "names": null
135
+ },
136
+ "episode_index": {
137
+ "dtype": "int64",
138
+ "shape": [
139
+ 1
140
+ ],
141
+ "names": null
142
+ },
143
+ "index": {
144
+ "dtype": "int64",
145
+ "shape": [
146
+ 1
147
+ ],
148
+ "names": null
149
+ },
150
+ "task_index": {
151
+ "dtype": "int64",
152
+ "shape": [
153
+ 1
154
+ ],
155
+ "names": null
156
+ }
157
+ }
158
+ }
159
+ ```
160
+
161
+
162
+ ## Citation
163
+
164
+ **BibTeX:**
165
+
166
+ ```bibtex
167
+ [More Information Needed]
168
+ ```