RonPlusSign commited on
Commit
64b7e30
·
verified ·
1 Parent(s): d2c7a3b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +199 -0
README.md ADDED
@@ -0,0 +1,199 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "franka",
29
+ "total_episodes": 100,
30
+ "total_frames": 15997,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 500,
35
+ "fps": 10,
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
+ "observation.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 7
46
+ ],
47
+ "names": [
48
+ "x",
49
+ "y",
50
+ "z",
51
+ "roll",
52
+ "pitch",
53
+ "yaw",
54
+ "gripper"
55
+ ],
56
+ "description": "End-effector position (x,y,z), orientation (roll,pitch,yaw) and gripper state (0.0 closed, 1.0 open)."
57
+ },
58
+ "action": {
59
+ "dtype": "float32",
60
+ "shape": [
61
+ 7
62
+ ],
63
+ "names": [
64
+ "x",
65
+ "y",
66
+ "z",
67
+ "roll",
68
+ "pitch",
69
+ "yaw",
70
+ "gripper"
71
+ ],
72
+ "description": "Delta action applied at each step, in Euler representation [xyz+rotation+gripper]."
73
+ },
74
+ "observation.state.joints": {
75
+ "dtype": "float32",
76
+ "shape": [
77
+ 7
78
+ ],
79
+ "names": [
80
+ "joint_1",
81
+ "joint_2",
82
+ "joint_3",
83
+ "joint_4",
84
+ "joint_5",
85
+ "joint_6",
86
+ "joint_7"
87
+ ],
88
+ "description": "Robot joint positions (absolute rotations)."
89
+ },
90
+ "observation.images.left_shoulder_rgb": {
91
+ "dtype": "video",
92
+ "shape": [
93
+ 256,
94
+ 256,
95
+ 3
96
+ ],
97
+ "names": [
98
+ "height",
99
+ "width",
100
+ "channels"
101
+ ],
102
+ "info": {
103
+ "video.fps": 10,
104
+ "video.height": 256,
105
+ "video.width": 256,
106
+ "video.channels": 3,
107
+ "video.is_depth_map": false,
108
+ "has_audio": false
109
+ }
110
+ },
111
+ "observation.images.front_rgb": {
112
+ "dtype": "video",
113
+ "shape": [
114
+ 256,
115
+ 256,
116
+ 3
117
+ ],
118
+ "names": [
119
+ "height",
120
+ "width",
121
+ "channels"
122
+ ],
123
+ "info": {
124
+ "video.fps": 10,
125
+ "video.height": 256,
126
+ "video.width": 256,
127
+ "video.channels": 3,
128
+ "video.is_depth_map": false,
129
+ "has_audio": false
130
+ }
131
+ },
132
+ "observation.images.wrist_rgb": {
133
+ "dtype": "video",
134
+ "shape": [
135
+ 256,
136
+ 256,
137
+ 3
138
+ ],
139
+ "names": [
140
+ "height",
141
+ "width",
142
+ "channels"
143
+ ],
144
+ "info": {
145
+ "video.fps": 10,
146
+ "video.height": 256,
147
+ "video.width": 256,
148
+ "video.channels": 3,
149
+ "video.is_depth_map": false,
150
+ "has_audio": false
151
+ }
152
+ },
153
+ "timestamp": {
154
+ "dtype": "float32",
155
+ "shape": [
156
+ 1
157
+ ],
158
+ "names": null
159
+ },
160
+ "frame_index": {
161
+ "dtype": "int64",
162
+ "shape": [
163
+ 1
164
+ ],
165
+ "names": null
166
+ },
167
+ "episode_index": {
168
+ "dtype": "int64",
169
+ "shape": [
170
+ 1
171
+ ],
172
+ "names": null
173
+ },
174
+ "index": {
175
+ "dtype": "int64",
176
+ "shape": [
177
+ 1
178
+ ],
179
+ "names": null
180
+ },
181
+ "task_index": {
182
+ "dtype": "int64",
183
+ "shape": [
184
+ 1
185
+ ],
186
+ "names": null
187
+ }
188
+ }
189
+ }
190
+ ```
191
+
192
+
193
+ ## Citation
194
+
195
+ **BibTeX:**
196
+
197
+ ```bibtex
198
+ [More Information Needed]
199
+ ```