yangfengzzz commited on
Commit
323838d
·
verified ·
1 Parent(s): 31dea65

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
+ configs:
8
+ - config_name: default
9
+ data_files: data/*/*.parquet
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": "so101_follower",
28
+ "total_episodes": 50,
29
+ "total_frames": 44349,
30
+ "total_tasks": 1,
31
+ "total_videos": 100,
32
+ "total_chunks": 1,
33
+ "chunks_size": 1000,
34
+ "fps": 30,
35
+ "splits": {
36
+ "train": "0:50"
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
+ "shoulder_pan.pos",
48
+ "shoulder_lift.pos",
49
+ "elbow_flex.pos",
50
+ "wrist_flex.pos",
51
+ "wrist_roll.pos",
52
+ "gripper.pos"
53
+ ]
54
+ },
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
+ "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.height": 480,
83
+ "video.width": 640,
84
+ "video.codec": "av1",
85
+ "video.pix_fmt": "yuv420p",
86
+ "video.is_depth_map": false,
87
+ "video.fps": 30,
88
+ "video.channels": 3,
89
+ "has_audio": false
90
+ }
91
+ },
92
+ "observation.images.wrist": {
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.height": 480,
106
+ "video.width": 640,
107
+ "video.codec": "av1",
108
+ "video.pix_fmt": "yuv420p",
109
+ "video.is_depth_map": false,
110
+ "video.fps": 30,
111
+ "video.channels": 3,
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
+ ```