BrunoM42 commited on
Commit
73d3acd
·
verified ·
1 Parent(s): 0b00e6e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +174 -0
README.md ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - paper
8
+ - wrapping
9
+ - deformable
10
+ - ur3e
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": "v2.1",
32
+ "robot_type": "UR3e",
33
+ "total_episodes": 56,
34
+ "total_frames": 32957,
35
+ "total_tasks": 1,
36
+ "total_videos": 112,
37
+ "total_chunks": 1,
38
+ "chunks_size": 1000,
39
+ "fps": 30,
40
+ "splits": {
41
+ "train": "0:56"
42
+ },
43
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
44
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
45
+ "features": {
46
+ "action": {
47
+ "dtype": "float64",
48
+ "shape": [
49
+ 10
50
+ ],
51
+ "names": [
52
+ "pos_1",
53
+ "pos_2",
54
+ "pos_3",
55
+ "rot_1",
56
+ "rot_2",
57
+ "rot_3",
58
+ "rot_4",
59
+ "rot_5",
60
+ "rot_6",
61
+ "gripper"
62
+ ]
63
+ },
64
+ "observation.state": {
65
+ "dtype": "float64",
66
+ "shape": [
67
+ 10
68
+ ],
69
+ "names": [
70
+ "pos_1",
71
+ "pos_2",
72
+ "pos_3",
73
+ "rot_1",
74
+ "rot_2",
75
+ "rot_3",
76
+ "rot_4",
77
+ "rot_5",
78
+ "rot_6",
79
+ "gripper"
80
+ ]
81
+ },
82
+ "observation.images.cam_1": {
83
+ "shape": [
84
+ 480,
85
+ 640,
86
+ 3
87
+ ],
88
+ "names": [
89
+ "height",
90
+ "width",
91
+ "channels"
92
+ ],
93
+ "info": {
94
+ "video.height": 480,
95
+ "video.width": 640,
96
+ "video.codec": "av1",
97
+ "video.pix_fmt": "yuv420p",
98
+ "video.is_depth_map": false,
99
+ "video.fps": 30,
100
+ "video.channels": 3,
101
+ "has_audio": false
102
+ },
103
+ "dtype": "video"
104
+ },
105
+ "observation.images.cam_2": {
106
+ "shape": [
107
+ 720,
108
+ 1280,
109
+ 3
110
+ ],
111
+ "names": [
112
+ "height",
113
+ "width",
114
+ "channels"
115
+ ],
116
+ "info": {
117
+ "video.height": 720,
118
+ "video.width": 1280,
119
+ "video.codec": "av1",
120
+ "video.pix_fmt": "yuv420p",
121
+ "video.is_depth_map": false,
122
+ "video.fps": 30,
123
+ "video.channels": 3,
124
+ "has_audio": false
125
+ },
126
+ "dtype": "video"
127
+ },
128
+ "timestamp": {
129
+ "dtype": "float32",
130
+ "shape": [
131
+ 1
132
+ ],
133
+ "names": null
134
+ },
135
+ "frame_index": {
136
+ "dtype": "int64",
137
+ "shape": [
138
+ 1
139
+ ],
140
+ "names": null
141
+ },
142
+ "episode_index": {
143
+ "dtype": "int64",
144
+ "shape": [
145
+ 1
146
+ ],
147
+ "names": null
148
+ },
149
+ "index": {
150
+ "dtype": "int64",
151
+ "shape": [
152
+ 1
153
+ ],
154
+ "names": null
155
+ },
156
+ "task_index": {
157
+ "dtype": "int64",
158
+ "shape": [
159
+ 1
160
+ ],
161
+ "names": null
162
+ }
163
+ }
164
+ }
165
+ ```
166
+
167
+
168
+ ## Citation
169
+
170
+ **BibTeX:**
171
+
172
+ ```bibtex
173
+ [More Information Needed]
174
+ ```