Tavish9 commited on
Commit
af234e0
·
verified ·
1 Parent(s): b062d73

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +173 -0
README.md ADDED
@@ -0,0 +1,173 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - LeRobot
8
+ - taco_play
9
+ - rlds
10
+ - openx
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.0",
32
+ "robot_type": "franka",
33
+ "total_episodes": 3242,
34
+ "total_frames": 213972,
35
+ "total_tasks": 403,
36
+ "total_videos": 6484,
37
+ "total_chunks": 4,
38
+ "chunks_size": 1000,
39
+ "fps": 15,
40
+ "splits": {
41
+ "train": "0:3242"
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
+ "observation.images.rgb_static": {
47
+ "dtype": "video",
48
+ "shape": [
49
+ 150,
50
+ 200,
51
+ 3
52
+ ],
53
+ "names": [
54
+ "height",
55
+ "width",
56
+ "rgb"
57
+ ],
58
+ "info": {
59
+ "video.fps": 15.0,
60
+ "video.height": 150,
61
+ "video.width": 200,
62
+ "video.channels": 3,
63
+ "video.codec": "av1",
64
+ "video.pix_fmt": "yuv420p",
65
+ "video.is_depth_map": false,
66
+ "has_audio": false
67
+ }
68
+ },
69
+ "observation.images.rgb_gripper": {
70
+ "dtype": "video",
71
+ "shape": [
72
+ 84,
73
+ 84,
74
+ 3
75
+ ],
76
+ "names": [
77
+ "height",
78
+ "width",
79
+ "rgb"
80
+ ],
81
+ "info": {
82
+ "video.fps": 15.0,
83
+ "video.height": 84,
84
+ "video.width": 84,
85
+ "video.channels": 3,
86
+ "video.codec": "av1",
87
+ "video.pix_fmt": "yuv420p",
88
+ "video.is_depth_map": false,
89
+ "has_audio": false
90
+ }
91
+ },
92
+ "observation.state": {
93
+ "dtype": "float32",
94
+ "shape": [
95
+ 8
96
+ ],
97
+ "names": {
98
+ "motors": [
99
+ "x",
100
+ "y",
101
+ "z",
102
+ "roll",
103
+ "pitch",
104
+ "yaw",
105
+ "pad",
106
+ "gripper"
107
+ ]
108
+ }
109
+ },
110
+ "action": {
111
+ "dtype": "float32",
112
+ "shape": [
113
+ 7
114
+ ],
115
+ "names": {
116
+ "motors": [
117
+ "x",
118
+ "y",
119
+ "z",
120
+ "roll",
121
+ "pitch",
122
+ "yaw",
123
+ "gripper"
124
+ ]
125
+ }
126
+ },
127
+ "timestamp": {
128
+ "dtype": "float32",
129
+ "shape": [
130
+ 1
131
+ ],
132
+ "names": null
133
+ },
134
+ "frame_index": {
135
+ "dtype": "int64",
136
+ "shape": [
137
+ 1
138
+ ],
139
+ "names": null
140
+ },
141
+ "episode_index": {
142
+ "dtype": "int64",
143
+ "shape": [
144
+ 1
145
+ ],
146
+ "names": null
147
+ },
148
+ "index": {
149
+ "dtype": "int64",
150
+ "shape": [
151
+ 1
152
+ ],
153
+ "names": null
154
+ },
155
+ "task_index": {
156
+ "dtype": "int64",
157
+ "shape": [
158
+ 1
159
+ ],
160
+ "names": null
161
+ }
162
+ }
163
+ }
164
+ ```
165
+
166
+
167
+ ## Citation
168
+
169
+ **BibTeX:**
170
+
171
+ ```bibtex
172
+ [More Information Needed]
173
+ ```