gribes02 commited on
Commit
42757a9
·
verified ·
1 Parent(s): 102c96d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +187 -0
README.md ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ## Dataset Description
15
+
16
+
17
+
18
+ - **Homepage:** [More Information Needed]
19
+ - **Paper:** [More Information Needed]
20
+ - **License:** apache-2.0
21
+
22
+ ## Dataset Structure
23
+
24
+ [meta/info.json](meta/info.json):
25
+ ```json
26
+ {
27
+ "codebase_version": "v3.0",
28
+ "robot_type": null,
29
+ "total_episodes": 2,
30
+ "total_frames": 2447,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 200,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:2"
38
+ },
39
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
40
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
41
+ "features": {
42
+ "observation.pose.position": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 3
46
+ ],
47
+ "names": [
48
+ "x",
49
+ "y",
50
+ "z"
51
+ ]
52
+ },
53
+ "observation.pose.orientation": {
54
+ "dtype": "float32",
55
+ "shape": [
56
+ 4
57
+ ],
58
+ "names": [
59
+ "w",
60
+ "x",
61
+ "y",
62
+ "z"
63
+ ]
64
+ },
65
+ "observation.wrench.force": {
66
+ "dtype": "float32",
67
+ "shape": [
68
+ 3
69
+ ],
70
+ "names": [
71
+ "fx",
72
+ "fy",
73
+ "fz"
74
+ ]
75
+ },
76
+ "observation.wrench.torque": {
77
+ "dtype": "float32",
78
+ "shape": [
79
+ 3
80
+ ],
81
+ "names": [
82
+ "tx",
83
+ "ty",
84
+ "tz"
85
+ ]
86
+ },
87
+ "action.twist.linear": {
88
+ "dtype": "float32",
89
+ "shape": [
90
+ 3
91
+ ],
92
+ "names": [
93
+ "vx",
94
+ "vy",
95
+ "vz"
96
+ ]
97
+ },
98
+ "action.twist.angular": {
99
+ "dtype": "float32",
100
+ "shape": [
101
+ 3
102
+ ],
103
+ "names": [
104
+ "wx",
105
+ "wy",
106
+ "wz"
107
+ ]
108
+ },
109
+ "action.gripper.width": {
110
+ "dtype": "float32",
111
+ "shape": [
112
+ 1
113
+ ],
114
+ "names": [
115
+ "width"
116
+ ]
117
+ },
118
+ "observation.images.exterior": {
119
+ "dtype": "video",
120
+ "shape": [
121
+ 3,
122
+ 480,
123
+ 640
124
+ ],
125
+ "names": [
126
+ "channels",
127
+ "height",
128
+ "width"
129
+ ],
130
+ "info": {
131
+ "video.height": 480,
132
+ "video.width": 640,
133
+ "video.codec": "av1",
134
+ "video.pix_fmt": "yuv420p",
135
+ "video.is_depth_map": false,
136
+ "video.fps": 30,
137
+ "video.channels": 3,
138
+ "has_audio": false
139
+ }
140
+ },
141
+ "timestamp": {
142
+ "dtype": "float32",
143
+ "shape": [
144
+ 1
145
+ ],
146
+ "names": null
147
+ },
148
+ "frame_index": {
149
+ "dtype": "int64",
150
+ "shape": [
151
+ 1
152
+ ],
153
+ "names": null
154
+ },
155
+ "episode_index": {
156
+ "dtype": "int64",
157
+ "shape": [
158
+ 1
159
+ ],
160
+ "names": null
161
+ },
162
+ "index": {
163
+ "dtype": "int64",
164
+ "shape": [
165
+ 1
166
+ ],
167
+ "names": null
168
+ },
169
+ "task_index": {
170
+ "dtype": "int64",
171
+ "shape": [
172
+ 1
173
+ ],
174
+ "names": null
175
+ }
176
+ }
177
+ }
178
+ ```
179
+
180
+
181
+ ## Citation
182
+
183
+ **BibTeX:**
184
+
185
+ ```bibtex
186
+ [More Information Needed]
187
+ ```