villekuosmanen commited on
Commit
f83a660
·
verified ·
1 Parent(s): c24c7c6

Upload README.md with huggingface_hub

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