n3puiol commited on
Commit
aaff430
·
verified ·
1 Parent(s): 51a32f1

Upload README.md with huggingface_hub

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