0x00raghu commited on
Commit
b53403f
·
verified ·
1 Parent(s): e15ef2d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +174 -0
README.md ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "codebase_version": "v2.0",
28
+ "robot_type": "so100_bimanual",
29
+ "total_episodes": 2,
30
+ "total_frames": 2386,
31
+ "total_tasks": 1,
32
+ "total_videos": 4,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:2"
38
+ },
39
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
40
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
41
+ "features": {
42
+ "action": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 12
46
+ ],
47
+ "names": [
48
+ "left_shoulder_pan",
49
+ "left_shoulder_lift",
50
+ "left_elbow_flex",
51
+ "left_wrist_flex",
52
+ "left_wrist_roll",
53
+ "left_gripper",
54
+ "right_shoulder_pan",
55
+ "right_shoulder_lift",
56
+ "right_elbow_flex",
57
+ "right_wrist_flex",
58
+ "right_wrist_roll",
59
+ "right_gripper"
60
+ ]
61
+ },
62
+ "observation.state": {
63
+ "dtype": "float32",
64
+ "shape": [
65
+ 12
66
+ ],
67
+ "names": [
68
+ "left_shoulder_pan",
69
+ "left_shoulder_lift",
70
+ "left_elbow_flex",
71
+ "left_wrist_flex",
72
+ "left_wrist_roll",
73
+ "left_gripper",
74
+ "right_shoulder_pan",
75
+ "right_shoulder_lift",
76
+ "right_elbow_flex",
77
+ "right_wrist_flex",
78
+ "right_wrist_roll",
79
+ "right_gripper"
80
+ ]
81
+ },
82
+ "observation.images.laptop": {
83
+ "dtype": "video",
84
+ "shape": [
85
+ 480,
86
+ 640,
87
+ 3
88
+ ],
89
+ "names": [
90
+ "height",
91
+ "width",
92
+ "channels"
93
+ ],
94
+ "info": {
95
+ "video.fps": 30.0,
96
+ "video.height": 480,
97
+ "video.width": 640,
98
+ "video.channels": 3,
99
+ "video.codec": "av1",
100
+ "video.pix_fmt": "yuv420p",
101
+ "video.is_depth_map": false,
102
+ "has_audio": false
103
+ }
104
+ },
105
+ "observation.images.phone": {
106
+ "dtype": "video",
107
+ "shape": [
108
+ 480,
109
+ 640,
110
+ 3
111
+ ],
112
+ "names": [
113
+ "height",
114
+ "width",
115
+ "channels"
116
+ ],
117
+ "info": {
118
+ "video.fps": 30.0,
119
+ "video.height": 480,
120
+ "video.width": 640,
121
+ "video.channels": 3,
122
+ "video.codec": "av1",
123
+ "video.pix_fmt": "yuv420p",
124
+ "video.is_depth_map": false,
125
+ "has_audio": false
126
+ }
127
+ },
128
+ "timestamp": {
129
+ "dtype": "float32",
130
+ "shape": [
131
+ 1
132
+ ],
133
+ "names": null
134
+ },
135
+ "frame_index": {
136
+ "dtype": "int64",
137
+ "shape": [
138
+ 1
139
+ ],
140
+ "names": null
141
+ },
142
+ "episode_index": {
143
+ "dtype": "int64",
144
+ "shape": [
145
+ 1
146
+ ],
147
+ "names": null
148
+ },
149
+ "index": {
150
+ "dtype": "int64",
151
+ "shape": [
152
+ 1
153
+ ],
154
+ "names": null
155
+ },
156
+ "task_index": {
157
+ "dtype": "int64",
158
+ "shape": [
159
+ 1
160
+ ],
161
+ "names": null
162
+ }
163
+ }
164
+ }
165
+ ```
166
+
167
+
168
+ ## Citation
169
+
170
+ **BibTeX:**
171
+
172
+ ```bibtex
173
+ [More Information Needed]
174
+ ```