ZibinDong commited on
Commit
f8e583a
·
verified ·
1 Parent(s): add9bec

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +148 -0
README.md ADDED
@@ -0,0 +1,148 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - so100
8
+ configs:
9
+ - config_name: data
10
+ data_files: data/*/*.parquet
11
+ - config_name: video
12
+ data_files: videos/*/*/*.mp4
13
+ ---
14
+
15
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
16
+
17
+ ## Dataset Structure
18
+
19
+ [meta/info.json](meta/info.json):
20
+ ```json
21
+ {
22
+ "codebase_version": "v3.0",
23
+ "robot_type": "so100_follower",
24
+ "total_episodes": 500,
25
+ "total_frames": 263342,
26
+ "total_tasks": 10,
27
+ "chunks_size": 1000,
28
+ "data_files_size_in_mb": 100,
29
+ "video_files_size_in_mb": 200,
30
+ "fps": 30,
31
+ "splits": {
32
+ "train": "0:500"
33
+ },
34
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
35
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
36
+ "features": {
37
+ "action": {
38
+ "dtype": "float32",
39
+ "shape": [
40
+ 6
41
+ ],
42
+ "names": [
43
+ "shoulder_pan.pos",
44
+ "shoulder_lift.pos",
45
+ "elbow_flex.pos",
46
+ "wrist_flex.pos",
47
+ "wrist_roll.pos",
48
+ "gripper.pos"
49
+ ]
50
+ },
51
+ "observation.state": {
52
+ "dtype": "float32",
53
+ "shape": [
54
+ 6
55
+ ],
56
+ "names": [
57
+ "shoulder_pan.pos",
58
+ "shoulder_lift.pos",
59
+ "elbow_flex.pos",
60
+ "wrist_flex.pos",
61
+ "wrist_roll.pos",
62
+ "gripper.pos"
63
+ ]
64
+ },
65
+ "observation.images.image0": {
66
+ "dtype": "video",
67
+ "shape": [
68
+ 256,
69
+ 256,
70
+ 3
71
+ ],
72
+ "names": [
73
+ "height",
74
+ "width",
75
+ "channels"
76
+ ],
77
+ "info": {
78
+ "video.height": 256,
79
+ "video.width": 256,
80
+ "video.codec": "av1",
81
+ "video.pix_fmt": "yuv420p",
82
+ "video.is_depth_map": false,
83
+ "video.fps": 30,
84
+ "video.channels": 3,
85
+ "has_audio": false
86
+ }
87
+ },
88
+ "observation.images.image1": {
89
+ "dtype": "video",
90
+ "shape": [
91
+ 256,
92
+ 256,
93
+ 3
94
+ ],
95
+ "names": [
96
+ "height",
97
+ "width",
98
+ "channels"
99
+ ],
100
+ "info": {
101
+ "video.height": 256,
102
+ "video.width": 256,
103
+ "video.codec": "av1",
104
+ "video.pix_fmt": "yuv420p",
105
+ "video.is_depth_map": false,
106
+ "video.fps": 30,
107
+ "video.channels": 3,
108
+ "has_audio": false
109
+ }
110
+ },
111
+ "timestamp": {
112
+ "dtype": "float32",
113
+ "shape": [
114
+ 1
115
+ ],
116
+ "names": null
117
+ },
118
+ "frame_index": {
119
+ "dtype": "int64",
120
+ "shape": [
121
+ 1
122
+ ],
123
+ "names": null
124
+ },
125
+ "episode_index": {
126
+ "dtype": "int64",
127
+ "shape": [
128
+ 1
129
+ ],
130
+ "names": null
131
+ },
132
+ "index": {
133
+ "dtype": "int64",
134
+ "shape": [
135
+ 1
136
+ ],
137
+ "names": null
138
+ },
139
+ "task_index": {
140
+ "dtype": "int64",
141
+ "shape": [
142
+ 1
143
+ ],
144
+ "names": null
145
+ }
146
+ }
147
+ }
148
+ ```