HyeonseokE commited on
Commit
0dcf143
·
verified ·
1 Parent(s): af58ef4

Add LeRobot dataset card with v3.0 tags

Browse files
Files changed (1) hide show
  1. README.md +190 -0
README.md ADDED
@@ -0,0 +1,190 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - lerobot
8
+ - so101_follower
9
+ configs:
10
+ - config_name: default
11
+ data_files: data/*/*.parquet
12
+ ---
13
+
14
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
15
+
16
+ ## Dataset Description
17
+
18
+ A robot manipulation dataset for imitation learning, compatible with **LeRobot v3.0** format.
19
+
20
+ - **Robot Type:** so101_follower
21
+ - **Total Episodes:** 30
22
+ - **Total Frames:** 27606
23
+ - **FPS:** 30
24
+ - **Codebase Version:** v3.0
25
+
26
+ ### Features
27
+
28
+ | Feature | Shape | Type |
29
+ |---------|-------|------|
30
+ | observation.state | [6] | float32 |
31
+ | action | [6] | float32 |
32
+ | observation.images.realsense | [480, 640, 3] | video |
33
+ | observation.images.innomaker | [480, 640, 3] | video |
34
+
35
+ ## Dataset Structure
36
+
37
+ [meta/info.json](meta/info.json):
38
+ ```json
39
+ {
40
+ "codebase_version": "v3.0",
41
+ "robot_type": "so101_follower",
42
+ "total_episodes": 30,
43
+ "total_frames": 27606,
44
+ "total_tasks": 1,
45
+ "chunks_size": 1000,
46
+ "data_files_size_in_mb": 100,
47
+ "video_files_size_in_mb": 200,
48
+ "fps": 30,
49
+ "splits": {
50
+ "train": "0:30"
51
+ },
52
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
53
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
54
+ "features": {
55
+ "observation.state": {
56
+ "dtype": "float32",
57
+ "shape": [
58
+ 6
59
+ ],
60
+ "names": [
61
+ "shoulder_pan.pos",
62
+ "shoulder_lift.pos",
63
+ "elbow_flex.pos",
64
+ "wrist_flex.pos",
65
+ "wrist_roll.pos",
66
+ "gripper.pos"
67
+ ]
68
+ },
69
+ "action": {
70
+ "dtype": "float32",
71
+ "shape": [
72
+ 6
73
+ ],
74
+ "names": [
75
+ "shoulder_pan.pos",
76
+ "shoulder_lift.pos",
77
+ "elbow_flex.pos",
78
+ "wrist_flex.pos",
79
+ "wrist_roll.pos",
80
+ "gripper.pos"
81
+ ]
82
+ },
83
+ "observation.images.realsense": {
84
+ "dtype": "video",
85
+ "shape": [
86
+ 480,
87
+ 640,
88
+ 3
89
+ ],
90
+ "names": [
91
+ "height",
92
+ "width",
93
+ "channels"
94
+ ],
95
+ "info": {
96
+ "video.height": 480,
97
+ "video.width": 640,
98
+ "video.codec": "av1",
99
+ "video.pix_fmt": "yuv420p",
100
+ "video.is_depth_map": false,
101
+ "video.fps": 30,
102
+ "video.channels": 3,
103
+ "has_audio": false
104
+ }
105
+ },
106
+ "observation.images.innomaker": {
107
+ "dtype": "video",
108
+ "shape": [
109
+ 480,
110
+ 640,
111
+ 3
112
+ ],
113
+ "names": [
114
+ "height",
115
+ "width",
116
+ "channels"
117
+ ],
118
+ "info": {
119
+ "video.height": 480,
120
+ "video.width": 640,
121
+ "video.codec": "av1",
122
+ "video.pix_fmt": "yuv420p",
123
+ "video.is_depth_map": false,
124
+ "video.fps": 30,
125
+ "video.channels": 3,
126
+ "has_audio": false
127
+ }
128
+ },
129
+ "timestamp": {
130
+ "dtype": "float32",
131
+ "shape": [
132
+ 1
133
+ ],
134
+ "names": null
135
+ },
136
+ "frame_index": {
137
+ "dtype": "int64",
138
+ "shape": [
139
+ 1
140
+ ],
141
+ "names": null
142
+ },
143
+ "episode_index": {
144
+ "dtype": "int64",
145
+ "shape": [
146
+ 1
147
+ ],
148
+ "names": null
149
+ },
150
+ "index": {
151
+ "dtype": "int64",
152
+ "shape": [
153
+ 1
154
+ ],
155
+ "names": null
156
+ },
157
+ "task_index": {
158
+ "dtype": "int64",
159
+ "shape": [
160
+ 1
161
+ ],
162
+ "names": null
163
+ }
164
+ }
165
+ }
166
+ ```
167
+
168
+ ## Usage
169
+
170
+ ```python
171
+ from lerobot.datasets.lerobot_dataset import LeRobotDataset
172
+
173
+ # Load the dataset
174
+ dataset = LeRobotDataset("CSI-Agent/test2")
175
+
176
+ # Access a sample
177
+ sample = dataset[0]
178
+ print(sample.keys())
179
+ ```
180
+
181
+ ## Citation
182
+
183
+ ```bibtex
184
+ @misc{test2,
185
+ title = {test2},
186
+ year = {2025},
187
+ publisher = {Hugging Face},
188
+ howpublished = {\url{https://huggingface.co/datasets/CSI-Agent/test2}}
189
+ }
190
+ ```