WWS-NUS commited on
Commit
24ed23e
·
verified ·
1 Parent(s): 506abf3

Upload README.md with huggingface_hub

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