chomeed commited on
Commit
bc884fc
·
verified ·
1 Parent(s): e49c93c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +177 -0
README.md ADDED
@@ -0,0 +1,177 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": null,
29
+ "total_episodes": 100,
30
+ "total_frames": 1792,
31
+ "total_tasks": 1,
32
+ "chunks_size": 10000,
33
+ "data_files_size_in_mb": 10000,
34
+ "video_files_size_in_mb": 20000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:100"
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
+ "reward": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 1
46
+ ]
47
+ },
48
+ "done": {
49
+ "dtype": "bool",
50
+ "shape": [
51
+ 1
52
+ ]
53
+ },
54
+ "observation.images.front_rgb": {
55
+ "dtype": "video",
56
+ "shape": [
57
+ 256,
58
+ 256,
59
+ 3
60
+ ],
61
+ "names": [
62
+ "height",
63
+ "width",
64
+ "channels"
65
+ ],
66
+ "info": {
67
+ "video.height": 256,
68
+ "video.width": 256,
69
+ "video.channels": 3
70
+ }
71
+ },
72
+ "observation.images.wrist_rgb": {
73
+ "dtype": "video",
74
+ "shape": [
75
+ 256,
76
+ 256,
77
+ 3
78
+ ],
79
+ "names": [
80
+ "height",
81
+ "width",
82
+ "channels"
83
+ ],
84
+ "info": {
85
+ "video.height": 256,
86
+ "video.width": 256,
87
+ "video.channels": 3
88
+ }
89
+ },
90
+ "observation.state": {
91
+ "dtype": "float32",
92
+ "shape": [
93
+ 19
94
+ ],
95
+ "names": [
96
+ "fingertip_pos_rel_fixed_x",
97
+ "fingertip_pos_rel_fixed_y",
98
+ "fingertip_pos_rel_fixed_z",
99
+ "fingertip_quat_w",
100
+ "fingertip_quat_x",
101
+ "fingertip_quat_y",
102
+ "fingertip_quat_z",
103
+ "ee_linvel_x",
104
+ "ee_linvel_y",
105
+ "ee_linvel_z",
106
+ "ee_angvel_x",
107
+ "ee_angvel_y",
108
+ "ee_angvel_z",
109
+ "prev_action_px",
110
+ "prev_action_py",
111
+ "prev_action_pz",
112
+ "prev_action_rx",
113
+ "prev_action_ry",
114
+ "prev_action_rz"
115
+ ]
116
+ },
117
+ "action": {
118
+ "dtype": "float32",
119
+ "shape": [
120
+ 6
121
+ ],
122
+ "names": [
123
+ "px",
124
+ "py",
125
+ "pz",
126
+ "rx",
127
+ "ry",
128
+ "rz"
129
+ ]
130
+ },
131
+ "timestamp": {
132
+ "dtype": "float32",
133
+ "shape": [
134
+ 1
135
+ ],
136
+ "names": null
137
+ },
138
+ "frame_index": {
139
+ "dtype": "int64",
140
+ "shape": [
141
+ 1
142
+ ],
143
+ "names": null
144
+ },
145
+ "episode_index": {
146
+ "dtype": "int64",
147
+ "shape": [
148
+ 1
149
+ ],
150
+ "names": null
151
+ },
152
+ "index": {
153
+ "dtype": "int64",
154
+ "shape": [
155
+ 1
156
+ ],
157
+ "names": null
158
+ },
159
+ "task_index": {
160
+ "dtype": "int64",
161
+ "shape": [
162
+ 1
163
+ ],
164
+ "names": null
165
+ }
166
+ }
167
+ }
168
+ ```
169
+
170
+
171
+ ## Citation
172
+
173
+ **BibTeX:**
174
+
175
+ ```bibtex
176
+ [More Information Needed]
177
+ ```