DORLR commited on
Commit
533d1a6
·
verified ·
1 Parent(s): fcea7b0

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +165 -0
README.md ADDED
@@ -0,0 +1,165 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
15
+ <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=DORLR/ur5_scripted_rl_merged">
16
+ <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
17
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl-dark.svg"/>
18
+ </a>
19
+
20
+
21
+ ## Dataset Description
22
+
23
+
24
+
25
+ - **Homepage:** [More Information Needed]
26
+ - **Paper:** [More Information Needed]
27
+ - **License:** apache-2.0
28
+
29
+ ## Dataset Structure
30
+
31
+ [meta/info.json](meta/info.json):
32
+ ```json
33
+ {
34
+ "codebase_version": "v3.0",
35
+ "robot_type": "ur5",
36
+ "total_episodes": 600,
37
+ "total_frames": 117004,
38
+ "total_tasks": 1,
39
+ "chunks_size": 1000,
40
+ "data_files_size_in_mb": 100,
41
+ "video_files_size_in_mb": 200,
42
+ "fps": 30,
43
+ "splits": {
44
+ "train": "0:600"
45
+ },
46
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
47
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
48
+ "features": {
49
+ "timestamp": {
50
+ "dtype": "float32",
51
+ "shape": [
52
+ 1
53
+ ],
54
+ "names": null
55
+ },
56
+ "frame_index": {
57
+ "dtype": "int64",
58
+ "shape": [
59
+ 1
60
+ ],
61
+ "names": null
62
+ },
63
+ "episode_index": {
64
+ "dtype": "int64",
65
+ "shape": [
66
+ 1
67
+ ],
68
+ "names": null
69
+ },
70
+ "index": {
71
+ "dtype": "int64",
72
+ "shape": [
73
+ 1
74
+ ],
75
+ "names": null
76
+ },
77
+ "task_index": {
78
+ "dtype": "int64",
79
+ "shape": [
80
+ 1
81
+ ],
82
+ "names": null
83
+ },
84
+ "observation.images.cam_wrist": {
85
+ "dtype": "video",
86
+ "names": [
87
+ "height",
88
+ "width",
89
+ "channels"
90
+ ],
91
+ "shape": [
92
+ 480,
93
+ 640,
94
+ 3
95
+ ],
96
+ "info": {
97
+ "video.height": 480,
98
+ "video.width": 640,
99
+ "video.channels": 3,
100
+ "video.codec": "libx264",
101
+ "video.pix_fmt": "yuv420p"
102
+ }
103
+ },
104
+ "observation.images.cam_side": {
105
+ "dtype": "video",
106
+ "names": [
107
+ "height",
108
+ "width",
109
+ "channels"
110
+ ],
111
+ "shape": [
112
+ 720,
113
+ 1280,
114
+ 3
115
+ ],
116
+ "info": {
117
+ "video.height": 720,
118
+ "video.width": 1280,
119
+ "video.channels": 3,
120
+ "video.codec": "libx264",
121
+ "video.pix_fmt": "yuv420p"
122
+ }
123
+ },
124
+ "observation.state": {
125
+ "dtype": "float32",
126
+ "names": [
127
+ "shoulder_pan_joint",
128
+ "shoulder_lift_joint",
129
+ "elbow_joint",
130
+ "wrist_1_joint",
131
+ "wrist_2_joint",
132
+ "wrist_3_joint",
133
+ "robotiq_85_left_knuckle_joint"
134
+ ],
135
+ "shape": [
136
+ 7
137
+ ]
138
+ },
139
+ "action": {
140
+ "dtype": "float32",
141
+ "names": [
142
+ "shoulder_pan_joint",
143
+ "shoulder_lift_joint",
144
+ "elbow_joint",
145
+ "wrist_1_joint",
146
+ "wrist_2_joint",
147
+ "wrist_3_joint",
148
+ "robotiq_85_left_knuckle_joint"
149
+ ],
150
+ "shape": [
151
+ 7
152
+ ]
153
+ }
154
+ }
155
+ }
156
+ ```
157
+
158
+
159
+ ## Citation
160
+
161
+ **BibTeX:**
162
+
163
+ ```bibtex
164
+ [More Information Needed]
165
+ ```