RADTEAM commited on
Commit
a5a3f7e
·
verified ·
1 Parent(s): 5e34a86

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
+ task_categories:
3
+ - robotics
4
+ tags:
5
+ - LeRobot
6
+ - so101
7
+ - smolvla
8
+ - lerobot
9
+ - robotics
10
+ - imitation-learning
11
+ configs:
12
+ - config_name: default
13
+ data_files: data/*/*.parquet
14
+ ---
15
+
16
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
17
+
18
+
19
+
20
+ ## Dataset Description
21
+
22
+
23
+
24
+ - **Homepage:** [More Information Needed]
25
+ - **Paper:** [More Information Needed]
26
+ - **License:** [More Information Needed]
27
+
28
+ ## Dataset Structure
29
+
30
+ [meta/info.json](meta/info.json):
31
+ ```json
32
+ {
33
+ "codebase_version": "v3.0",
34
+ "robot_type": "so_follower",
35
+ "total_episodes": 12,
36
+ "total_frames": 7146,
37
+ "total_tasks": 1,
38
+ "chunks_size": 1000,
39
+ "data_files_size_in_mb": 100,
40
+ "video_files_size_in_mb": 200,
41
+ "fps": 30,
42
+ "splits": {
43
+ "train": "0:12"
44
+ },
45
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
46
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
47
+ "features": {
48
+ "action": {
49
+ "dtype": "float32",
50
+ "names": [
51
+ "shoulder_pan.pos",
52
+ "shoulder_lift.pos",
53
+ "elbow_flex.pos",
54
+ "wrist_flex.pos",
55
+ "wrist_roll.pos",
56
+ "gripper.pos"
57
+ ],
58
+ "shape": [
59
+ 6
60
+ ]
61
+ },
62
+ "observation.state": {
63
+ "dtype": "float32",
64
+ "names": [
65
+ "shoulder_pan.pos",
66
+ "shoulder_lift.pos",
67
+ "elbow_flex.pos",
68
+ "wrist_flex.pos",
69
+ "wrist_roll.pos",
70
+ "gripper.pos"
71
+ ],
72
+ "shape": [
73
+ 6
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.height": 480,
90
+ "video.width": 640,
91
+ "video.codec": "av1",
92
+ "video.pix_fmt": "yuv420p",
93
+ "video.is_depth_map": false,
94
+ "video.fps": 30,
95
+ "video.channels": 3,
96
+ "has_audio": false
97
+ }
98
+ },
99
+ "observation.images.overhead": {
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.height": 480,
113
+ "video.width": 640,
114
+ "video.codec": "av1",
115
+ "video.pix_fmt": "yuv420p",
116
+ "video.is_depth_map": false,
117
+ "video.fps": 30,
118
+ "video.channels": 3,
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
+ ```