KeWangRobotics commited on
Commit
d9209ce
·
verified ·
1 Parent(s): 71954ee

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +172 -0
README.md ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.0",
28
+ "robot_type": "piper",
29
+ "total_episodes": 15,
30
+ "total_frames": 3558,
31
+ "total_tasks": 1,
32
+ "total_videos": 30,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 20,
36
+ "splits": {
37
+ "train": "0:15"
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": "int64",
44
+ "shape": [
45
+ 1
46
+ ],
47
+ "names": null
48
+ },
49
+ "next.done": {
50
+ "dtype": "bool",
51
+ "shape": [
52
+ 1
53
+ ],
54
+ "names": null
55
+ },
56
+ "action": {
57
+ "dtype": "float32",
58
+ "shape": [
59
+ 4
60
+ ],
61
+ "names": [
62
+ "main_joint_1",
63
+ "main_joint_2",
64
+ "main_joint_3",
65
+ "main_gripper"
66
+ ]
67
+ },
68
+ "observation.state": {
69
+ "dtype": "float32",
70
+ "shape": [
71
+ 4
72
+ ],
73
+ "names": [
74
+ "main_joint_1",
75
+ "main_joint_2",
76
+ "main_joint_3",
77
+ "main_gripper"
78
+ ]
79
+ },
80
+ "observation.images.wrist": {
81
+ "dtype": "video",
82
+ "shape": [
83
+ 480,
84
+ 640,
85
+ 3
86
+ ],
87
+ "names": [
88
+ "height",
89
+ "width",
90
+ "channels"
91
+ ],
92
+ "info": {
93
+ "video.fps": 20.0,
94
+ "video.height": 480,
95
+ "video.width": 640,
96
+ "video.channels": 3,
97
+ "video.codec": "av1",
98
+ "video.pix_fmt": "yuv420p",
99
+ "video.is_depth_map": false,
100
+ "has_audio": false
101
+ }
102
+ },
103
+ "observation.images.top": {
104
+ "dtype": "video",
105
+ "shape": [
106
+ 480,
107
+ 640,
108
+ 3
109
+ ],
110
+ "names": [
111
+ "height",
112
+ "width",
113
+ "channels"
114
+ ],
115
+ "info": {
116
+ "video.fps": 20.0,
117
+ "video.height": 480,
118
+ "video.width": 640,
119
+ "video.channels": 3,
120
+ "video.codec": "av1",
121
+ "video.pix_fmt": "yuv420p",
122
+ "video.is_depth_map": false,
123
+ "has_audio": false
124
+ }
125
+ },
126
+ "timestamp": {
127
+ "dtype": "float32",
128
+ "shape": [
129
+ 1
130
+ ],
131
+ "names": null
132
+ },
133
+ "frame_index": {
134
+ "dtype": "int64",
135
+ "shape": [
136
+ 1
137
+ ],
138
+ "names": null
139
+ },
140
+ "episode_index": {
141
+ "dtype": "int64",
142
+ "shape": [
143
+ 1
144
+ ],
145
+ "names": null
146
+ },
147
+ "index": {
148
+ "dtype": "int64",
149
+ "shape": [
150
+ 1
151
+ ],
152
+ "names": null
153
+ },
154
+ "task_index": {
155
+ "dtype": "int64",
156
+ "shape": [
157
+ 1
158
+ ],
159
+ "names": null
160
+ }
161
+ }
162
+ }
163
+ ```
164
+
165
+
166
+ ## Citation
167
+
168
+ **BibTeX:**
169
+
170
+ ```bibtex
171
+ [More Information Needed]
172
+ ```