ravtscheev commited on
Commit
be84e93
·
verified ·
1 Parent(s): cb8acf1

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +165 -3
README.md CHANGED
@@ -3,8 +3,170 @@ license: apache-2.0
3
  task_categories:
4
  - robotics
5
  tags:
6
- - robotics
7
  - LeRobot
8
- - manipulation
 
9
  - ur5e
10
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  task_categories:
4
  - robotics
5
  tags:
 
6
  - LeRobot
7
+ - LeRobot
8
+ - robotics
9
  - ur5e
10
+ - manipulation
11
+ configs:
12
+ - config_name: default
13
+ data_files: data/*/*.parquet
14
+ ---
15
+
16
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
17
+
18
+ ## Dataset Description
19
+
20
+
21
+
22
+ - **Homepage:** [More Information Needed]
23
+ - **Paper:** [More Information Needed]
24
+ - **License:** apache-2.0
25
+
26
+ ## Dataset Structure
27
+
28
+ [meta/info.json](meta/info.json):
29
+ ```json
30
+ {
31
+ "codebase_version": "v3.0",
32
+ "robot_type": "ur5e",
33
+ "total_episodes": 1000,
34
+ "total_frames": 619319,
35
+ "total_tasks": 1,
36
+ "chunks_size": 1000,
37
+ "data_files_size_in_mb": 100,
38
+ "video_files_size_in_mb": 200,
39
+ "fps": 20,
40
+ "splits": {
41
+ "train": "0:1000"
42
+ },
43
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
44
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
45
+ "features": {
46
+ "observation.images.camera_base": {
47
+ "dtype": "video",
48
+ "shape": [
49
+ 224,
50
+ 224,
51
+ 3
52
+ ],
53
+ "names": [
54
+ "height",
55
+ "width",
56
+ "rgb"
57
+ ],
58
+ "info": {
59
+ "video.height": 224,
60
+ "video.width": 224,
61
+ "video.codec": "av1",
62
+ "video.pix_fmt": "yuv420p",
63
+ "video.is_depth_map": false,
64
+ "video.fps": 20,
65
+ "video.channels": 3,
66
+ "has_audio": false
67
+ }
68
+ },
69
+ "observation.images.camera_wrist_right": {
70
+ "dtype": "video",
71
+ "shape": [
72
+ 224,
73
+ 224,
74
+ 3
75
+ ],
76
+ "names": [
77
+ "height",
78
+ "width",
79
+ "rgb"
80
+ ],
81
+ "info": {
82
+ "video.height": 224,
83
+ "video.width": 224,
84
+ "video.codec": "av1",
85
+ "video.pix_fmt": "yuv420p",
86
+ "video.is_depth_map": false,
87
+ "video.fps": 20,
88
+ "video.channels": 3,
89
+ "has_audio": false
90
+ }
91
+ },
92
+ "observation.state": {
93
+ "dtype": "float32",
94
+ "shape": [
95
+ 7
96
+ ],
97
+ "names": {
98
+ "eef_pose": [
99
+ "pos_x",
100
+ "pos_y",
101
+ "pos_z",
102
+ "rot_x",
103
+ "rot_y",
104
+ "rot_z",
105
+ "gripper_width"
106
+ ]
107
+ }
108
+ },
109
+ "action": {
110
+ "dtype": "float32",
111
+ "shape": [
112
+ 7
113
+ ],
114
+ "names": {
115
+ "eef_action": [
116
+ "dx",
117
+ "dy",
118
+ "dz",
119
+ "dr_x",
120
+ "dr_y",
121
+ "dr_z",
122
+ "gripper_action"
123
+ ]
124
+ }
125
+ },
126
+ "timestamp": {
127
+ "dtype": "float32",
128
+ "shape": [
129
+ 1
130
+ ],
131
+ "names": null
132
+ },
133
+ "frame_index": {
134
+ "dtype": "int64",
135
+ "shape": [
136
+ 1
137
+ ],
138
+ "names": null
139
+ },
140
+ "episode_index": {
141
+ "dtype": "int64",
142
+ "shape": [
143
+ 1
144
+ ],
145
+ "names": null
146
+ },
147
+ "index": {
148
+ "dtype": "int64",
149
+ "shape": [
150
+ 1
151
+ ],
152
+ "names": null
153
+ },
154
+ "task_index": {
155
+ "dtype": "int64",
156
+ "shape": [
157
+ 1
158
+ ],
159
+ "names": null
160
+ }
161
+ }
162
+ }
163
+ ```
164
+
165
+
166
+ ## Citation
167
+
168
+ **BibTeX:**
169
+
170
+ ```bibtex
171
+ [More Information Needed]
172
+ ```