dancher00 commited on
Commit
ba75f35
·
verified ·
1 Parent(s): cae8809

Create README.md

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