weiye11 commited on
Commit
f0f4897
·
verified ·
1 Parent(s): ebf53dd

Create README.md

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