tlpss commited on
Commit
546caab
·
verified ·
1 Parent(s): 1ab146f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +190 -0
README.md ADDED
@@ -0,0 +1,190 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "v2.1",
28
+ "robot_type": null,
29
+ "total_episodes": 103,
30
+ "total_frames": 13567,
31
+ "total_tasks": 2,
32
+ "total_videos": 206,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 10,
36
+ "splits": {
37
+ "train": "0:103"
38
+ },
39
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
40
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
41
+ "features": {
42
+ "next.reward": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 1
46
+ ],
47
+ "names": null
48
+ },
49
+ "next.success": {
50
+ "dtype": "bool",
51
+ "shape": [
52
+ 1
53
+ ],
54
+ "names": null
55
+ },
56
+ "seed": {
57
+ "dtype": "int64",
58
+ "shape": [
59
+ 1
60
+ ],
61
+ "names": null
62
+ },
63
+ "timestamp": {
64
+ "dtype": "float32",
65
+ "shape": [
66
+ 1
67
+ ],
68
+ "names": null
69
+ },
70
+ "robot_pose": {
71
+ "dtype": "float32",
72
+ "shape": [
73
+ 6
74
+ ],
75
+ "names": null
76
+ },
77
+ "gripper_state": {
78
+ "dtype": "float32",
79
+ "shape": [
80
+ 1
81
+ ],
82
+ "names": null
83
+ },
84
+ "joints": {
85
+ "dtype": "float32",
86
+ "shape": [
87
+ 6
88
+ ],
89
+ "names": null
90
+ },
91
+ "action": {
92
+ "dtype": "float32",
93
+ "shape": [
94
+ 7
95
+ ],
96
+ "names": null
97
+ },
98
+ "frame_index": {
99
+ "dtype": "int64",
100
+ "shape": [
101
+ 1
102
+ ],
103
+ "names": null
104
+ },
105
+ "episode_index": {
106
+ "dtype": "int64",
107
+ "shape": [
108
+ 1
109
+ ],
110
+ "names": null
111
+ },
112
+ "index": {
113
+ "dtype": "int64",
114
+ "shape": [
115
+ 1
116
+ ],
117
+ "names": null
118
+ },
119
+ "task_index": {
120
+ "dtype": "int64",
121
+ "shape": [
122
+ 1
123
+ ],
124
+ "names": null
125
+ },
126
+ "observation.state": {
127
+ "dtype": "float32",
128
+ "shape": [
129
+ 7
130
+ ],
131
+ "names": null
132
+ },
133
+ "observation.images.wrist_image": {
134
+ "dtype": "video",
135
+ "names": [
136
+ "channel",
137
+ "height",
138
+ "width"
139
+ ],
140
+ "shape": [
141
+ 240,
142
+ 320,
143
+ 3
144
+ ],
145
+ "info": {
146
+ "video.fps": 10.0,
147
+ "video.height": 240,
148
+ "video.width": 320,
149
+ "video.channels": 3,
150
+ "video.codec": "h264",
151
+ "video.pix_fmt": "yuv420p",
152
+ "video.is_depth_map": false,
153
+ "has_audio": false
154
+ }
155
+ },
156
+ "observation.images.scene_image": {
157
+ "dtype": "video",
158
+ "names": [
159
+ "channel",
160
+ "height",
161
+ "width"
162
+ ],
163
+ "shape": [
164
+ 240,
165
+ 320,
166
+ 3
167
+ ],
168
+ "info": {
169
+ "video.fps": 10.0,
170
+ "video.height": 240,
171
+ "video.width": 320,
172
+ "video.channels": 3,
173
+ "video.codec": "h264",
174
+ "video.pix_fmt": "yuv420p",
175
+ "video.is_depth_map": false,
176
+ "has_audio": false
177
+ }
178
+ }
179
+ }
180
+ }
181
+ ```
182
+
183
+
184
+ ## Citation
185
+
186
+ **BibTeX:**
187
+
188
+ ```bibtex
189
+ [More Information Needed]
190
+ ```