KeWangRobotics commited on
Commit
eaefddc
·
verified ·
1 Parent(s): 2813aa0

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +170 -0
README.md ADDED
@@ -0,0 +1,170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ 128,
84
+ 128
85
+ ],
86
+ "names": [
87
+ "height",
88
+ "width",
89
+ "channels"
90
+ ],
91
+ "info": {
92
+ "video.fps": 20.0,
93
+ "video.height": 480,
94
+ "video.width": 640,
95
+ "video.channels": 3,
96
+ "video.codec": "av1",
97
+ "video.pix_fmt": "yuv420p",
98
+ "video.is_depth_map": false,
99
+ "has_audio": false
100
+ }
101
+ },
102
+ "observation.images.top": {
103
+ "dtype": "video",
104
+ "shape": [
105
+ 128,
106
+ 128
107
+ ],
108
+ "names": [
109
+ "height",
110
+ "width",
111
+ "channels"
112
+ ],
113
+ "info": {
114
+ "video.fps": 20.0,
115
+ "video.height": 480,
116
+ "video.width": 640,
117
+ "video.channels": 3,
118
+ "video.codec": "av1",
119
+ "video.pix_fmt": "yuv420p",
120
+ "video.is_depth_map": false,
121
+ "has_audio": false
122
+ }
123
+ },
124
+ "timestamp": {
125
+ "dtype": "float32",
126
+ "shape": [
127
+ 1
128
+ ],
129
+ "names": null
130
+ },
131
+ "frame_index": {
132
+ "dtype": "int64",
133
+ "shape": [
134
+ 1
135
+ ],
136
+ "names": null
137
+ },
138
+ "episode_index": {
139
+ "dtype": "int64",
140
+ "shape": [
141
+ 1
142
+ ],
143
+ "names": null
144
+ },
145
+ "index": {
146
+ "dtype": "int64",
147
+ "shape": [
148
+ 1
149
+ ],
150
+ "names": null
151
+ },
152
+ "task_index": {
153
+ "dtype": "int64",
154
+ "shape": [
155
+ 1
156
+ ],
157
+ "names": null
158
+ }
159
+ }
160
+ }
161
+ ```
162
+
163
+
164
+ ## Citation
165
+
166
+ **BibTeX:**
167
+
168
+ ```bibtex
169
+ [More Information Needed]
170
+ ```