Bobetti commited on
Commit
cd318a0
·
verified ·
1 Parent(s): 019fcf3

Upload README.md with huggingface_hub

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