KeWangRobotics commited on
Commit
289e27b
·
verified ·
1 Parent(s): 45af666

Upload README.md with huggingface_hub

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