jae0311 commited on
Commit
681bc3e
·
verified ·
1 Parent(s): baa12a0

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +170 -0
README.md ADDED
@@ -0,0 +1,170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
12
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
13
+
14
+ ## Dataset Description
15
+
16
+
17
+
18
+ - **Homepage:** [More Information Needed]
19
+ - **Paper:** [More Information Needed]
20
+ - **License:** apache-2.0
21
+
22
+ ## Dataset Structure
23
+
24
+ [meta/info.json](meta/info.json):
25
+ ```json
26
+ {
27
+ "codebase_version": "v3.0",
28
+ "fps": 30,
29
+ "features": {
30
+ "action": {
31
+ "dtype": "float32",
32
+ "names": [
33
+ "shoulder_pan.pos",
34
+ "shoulder_lift.pos",
35
+ "elbow_flex.pos",
36
+ "wrist_flex.pos",
37
+ "wrist_roll.pos",
38
+ "gripper.pos"
39
+ ],
40
+ "shape": [
41
+ 6
42
+ ]
43
+ },
44
+ "observation.state": {
45
+ "dtype": "float32",
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
+ "shape": [
55
+ 6
56
+ ]
57
+ },
58
+ "observation.images.top": {
59
+ "dtype": "video",
60
+ "shape": [
61
+ 480,
62
+ 640,
63
+ 3
64
+ ],
65
+ "names": [
66
+ "height",
67
+ "width",
68
+ "channels"
69
+ ],
70
+ "info": {
71
+ "video.height": 480,
72
+ "video.width": 640,
73
+ "video.codec": "av1",
74
+ "video.pix_fmt": "yuv420p",
75
+ "video.is_depth_map": false,
76
+ "video.fps": 30,
77
+ "video.channels": 3,
78
+ "has_audio": false
79
+ }
80
+ },
81
+ "observation.images.wrist": {
82
+ "dtype": "video",
83
+ "shape": [
84
+ 480,
85
+ 640,
86
+ 3
87
+ ],
88
+ "names": [
89
+ "height",
90
+ "width",
91
+ "channels"
92
+ ],
93
+ "info": {
94
+ "video.height": 480,
95
+ "video.width": 640,
96
+ "video.codec": "av1",
97
+ "video.pix_fmt": "yuv420p",
98
+ "video.is_depth_map": false,
99
+ "video.fps": 30,
100
+ "video.channels": 3,
101
+ "has_audio": false
102
+ }
103
+ },
104
+ "timestamp": {
105
+ "dtype": "float32",
106
+ "shape": [
107
+ 1
108
+ ],
109
+ "names": null
110
+ },
111
+ "frame_index": {
112
+ "dtype": "int64",
113
+ "shape": [
114
+ 1
115
+ ],
116
+ "names": null
117
+ },
118
+ "episode_index": {
119
+ "dtype": "int64",
120
+ "shape": [
121
+ 1
122
+ ],
123
+ "names": null
124
+ },
125
+ "index": {
126
+ "dtype": "int64",
127
+ "shape": [
128
+ 1
129
+ ],
130
+ "names": null
131
+ },
132
+ "task_index": {
133
+ "dtype": "int64",
134
+ "shape": [
135
+ 1
136
+ ],
137
+ "names": null
138
+ }
139
+ },
140
+ "total_episodes": 166,
141
+ "total_frames": 95697,
142
+ "total_tasks": 1,
143
+ "chunks_size": 1000,
144
+ "data_files_size_in_mb": 100,
145
+ "video_files_size_in_mb": 200,
146
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
147
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
148
+ "robot_type": "omx_follower",
149
+ "splits": {
150
+ "train": "0:166"
151
+ },
152
+ "tasks": {
153
+ "0": "serve cup to the left",
154
+ "1": "serve cup to the right",
155
+ "2": "place plate at center",
156
+ "3": "return to home",
157
+ "4": "serve cup to the left and place plate at center",
158
+ "5": "serve cup to the right and place plate at center"
159
+ }
160
+ }
161
+ ```
162
+
163
+
164
+ ## Citation
165
+
166
+ **BibTeX:**
167
+
168
+ ```bibtex
169
+ [More Information Needed]
170
+ ```