saharjrb commited on
Commit
3351cd2
·
verified ·
1 Parent(s): ad4069f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +193 -0
README.md ADDED
@@ -0,0 +1,193 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - simulation
8
+ - pick_and_place
9
+ - isaac_sim
10
+ - franka
11
+ - motion_planning
12
+ configs:
13
+ - config_name: default
14
+ data_files: data/*/*.parquet
15
+ ---
16
+
17
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
18
+
19
+ ## Dataset Description
20
+
21
+
22
+
23
+ - **Homepage:** [More Information Needed]
24
+ - **Paper:** [More Information Needed]
25
+ - **License:** apache-2.0
26
+
27
+ ## Dataset Structure
28
+
29
+ [meta/info.json](meta/info.json):
30
+ ```json
31
+ {
32
+ "codebase_version": "v2.1",
33
+ "robot_type": "Franka",
34
+ "total_episodes": 50,
35
+ "total_frames": 7382,
36
+ "total_tasks": 1,
37
+ "total_videos": 150,
38
+ "total_chunks": 1,
39
+ "chunks_size": 1000,
40
+ "fps": 10,
41
+ "splits": {
42
+ "train": "0:50"
43
+ },
44
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
45
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
46
+ "features": {
47
+ "action": {
48
+ "dtype": "float64",
49
+ "shape": [
50
+ 8
51
+ ],
52
+ "names": [
53
+ "joint_0",
54
+ "joint_1",
55
+ "joint_2",
56
+ "joint_3",
57
+ "joint_4",
58
+ "joint_5",
59
+ "joint_6",
60
+ "gripper"
61
+ ]
62
+ },
63
+ "observation.state": {
64
+ "dtype": "float32",
65
+ "shape": [
66
+ 7
67
+ ],
68
+ "names": [
69
+ "joint_0",
70
+ "joint_1",
71
+ "joint_2",
72
+ "joint_3",
73
+ "joint_4",
74
+ "joint_5",
75
+ "joint_6"
76
+ ]
77
+ },
78
+ "observation.images.front": {
79
+ "shape": [
80
+ 480,
81
+ 640,
82
+ 3
83
+ ],
84
+ "names": [
85
+ "height",
86
+ "width",
87
+ "channels"
88
+ ],
89
+ "info": {
90
+ "video.height": 480,
91
+ "video.width": 640,
92
+ "video.codec": "av1",
93
+ "video.pix_fmt": "yuv420p",
94
+ "video.is_depth_map": false,
95
+ "video.fps": 10,
96
+ "video.channels": 3,
97
+ "has_audio": false
98
+ },
99
+ "dtype": "video"
100
+ },
101
+ "observation.images.side": {
102
+ "shape": [
103
+ 480,
104
+ 640,
105
+ 3
106
+ ],
107
+ "names": [
108
+ "height",
109
+ "width",
110
+ "channels"
111
+ ],
112
+ "info": {
113
+ "video.height": 480,
114
+ "video.width": 640,
115
+ "video.codec": "av1",
116
+ "video.pix_fmt": "yuv420p",
117
+ "video.is_depth_map": false,
118
+ "video.fps": 10,
119
+ "video.channels": 3,
120
+ "has_audio": false
121
+ },
122
+ "dtype": "video"
123
+ },
124
+ "observation.images.wrist": {
125
+ "shape": [
126
+ 480,
127
+ 640,
128
+ 3
129
+ ],
130
+ "names": [
131
+ "height",
132
+ "width",
133
+ "channels"
134
+ ],
135
+ "info": {
136
+ "video.height": 480,
137
+ "video.width": 640,
138
+ "video.codec": "av1",
139
+ "video.pix_fmt": "yuv420p",
140
+ "video.is_depth_map": false,
141
+ "video.fps": 10,
142
+ "video.channels": 3,
143
+ "has_audio": false
144
+ },
145
+ "dtype": "video"
146
+ },
147
+ "timestamp": {
148
+ "dtype": "float32",
149
+ "shape": [
150
+ 1
151
+ ],
152
+ "names": null
153
+ },
154
+ "frame_index": {
155
+ "dtype": "int64",
156
+ "shape": [
157
+ 1
158
+ ],
159
+ "names": null
160
+ },
161
+ "episode_index": {
162
+ "dtype": "int64",
163
+ "shape": [
164
+ 1
165
+ ],
166
+ "names": null
167
+ },
168
+ "index": {
169
+ "dtype": "int64",
170
+ "shape": [
171
+ 1
172
+ ],
173
+ "names": null
174
+ },
175
+ "task_index": {
176
+ "dtype": "int64",
177
+ "shape": [
178
+ 1
179
+ ],
180
+ "names": null
181
+ }
182
+ }
183
+ }
184
+ ```
185
+
186
+
187
+ ## Citation
188
+
189
+ **BibTeX:**
190
+
191
+ ```bibtex
192
+ [More Information Needed]
193
+ ```