RobotisSW commited on
Commit
0e5ee69
·
verified ·
1 Parent(s): 40bed09

Upload README.md with huggingface_hub

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