ankile commited on
Commit
2bcf2c8
·
verified ·
1 Parent(s): 89413ce

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +179 -0
README.md ADDED
@@ -0,0 +1,179 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "v3.0",
28
+ "robot_type": "panda",
29
+ "total_episodes": 60,
30
+ "total_frames": 3407,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 500,
35
+ "fps": 20,
36
+ "splits": {
37
+ "train": "0:60"
38
+ },
39
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
40
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
41
+ "features": {
42
+ "observation.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 9
46
+ ],
47
+ "names": [
48
+ "eef_pos_x",
49
+ "eef_pos_y",
50
+ "eef_pos_z",
51
+ "eef_quat_x",
52
+ "eef_quat_y",
53
+ "eef_quat_z",
54
+ "eef_quat_w",
55
+ "gripper_qpos_left",
56
+ "gripper_qpos_right"
57
+ ]
58
+ },
59
+ "observation.environment_state": {
60
+ "dtype": "float32",
61
+ "shape": [
62
+ 10
63
+ ],
64
+ "names": [
65
+ "cube_pos_x",
66
+ "cube_pos_y",
67
+ "cube_pos_z",
68
+ "cube_quat_x",
69
+ "cube_quat_y",
70
+ "cube_quat_z",
71
+ "cube_quat_w",
72
+ "gripper_to_cube_pos_x",
73
+ "gripper_to_cube_pos_y",
74
+ "gripper_to_cube_pos_z"
75
+ ]
76
+ },
77
+ "action": {
78
+ "dtype": "float32",
79
+ "shape": [
80
+ 7
81
+ ],
82
+ "names": [
83
+ "delta_eef_pos_x",
84
+ "delta_eef_pos_y",
85
+ "delta_eef_pos_z",
86
+ "delta_eef_rot_x",
87
+ "delta_eef_rot_y",
88
+ "delta_eef_rot_z",
89
+ "gripper_action"
90
+ ]
91
+ },
92
+ "source": {
93
+ "dtype": "int64",
94
+ "shape": [
95
+ 1
96
+ ],
97
+ "names": [
98
+ "source_id"
99
+ ]
100
+ },
101
+ "success": {
102
+ "dtype": "int64",
103
+ "shape": [
104
+ 1
105
+ ],
106
+ "names": [
107
+ "success_flag"
108
+ ]
109
+ },
110
+ "observation.images.agentview": {
111
+ "dtype": "video",
112
+ "shape": [
113
+ 256,
114
+ 256,
115
+ 3
116
+ ],
117
+ "names": [
118
+ "height",
119
+ "width",
120
+ "channels"
121
+ ],
122
+ "info": {
123
+ "video.height": 256,
124
+ "video.width": 256,
125
+ "video.codec": "av1",
126
+ "video.pix_fmt": "yuv420p",
127
+ "video.is_depth_map": false,
128
+ "video.fps": 20,
129
+ "video.channels": 3,
130
+ "has_audio": false
131
+ }
132
+ },
133
+ "timestamp": {
134
+ "dtype": "float32",
135
+ "shape": [
136
+ 1
137
+ ],
138
+ "names": null
139
+ },
140
+ "frame_index": {
141
+ "dtype": "int64",
142
+ "shape": [
143
+ 1
144
+ ],
145
+ "names": null
146
+ },
147
+ "episode_index": {
148
+ "dtype": "int64",
149
+ "shape": [
150
+ 1
151
+ ],
152
+ "names": null
153
+ },
154
+ "index": {
155
+ "dtype": "int64",
156
+ "shape": [
157
+ 1
158
+ ],
159
+ "names": null
160
+ },
161
+ "task_index": {
162
+ "dtype": "int64",
163
+ "shape": [
164
+ 1
165
+ ],
166
+ "names": null
167
+ }
168
+ }
169
+ }
170
+ ```
171
+
172
+
173
+ ## Citation
174
+
175
+ **BibTeX:**
176
+
177
+ ```bibtex
178
+ [More Information Needed]
179
+ ```