Keito-Sonehara commited on
Commit
7f07cd6
·
verified ·
1 Parent(s): d93b3b1

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
+ - libero
8
+ - rollout
9
+ configs:
10
+ - config_name: default
11
+ data_files: data/*/*.parquet
12
+ ---
13
+
14
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
15
+
16
+ ## Dataset Description
17
+
18
+
19
+
20
+ - **Homepage:** [More Information Needed]
21
+ - **Paper:** [More Information Needed]
22
+ - **License:** apache-2.0
23
+
24
+ ## Dataset Structure
25
+
26
+ [meta/info.json](meta/info.json):
27
+ ```json
28
+ {
29
+ "codebase_version": "v3.0",
30
+ "robot_type": "panda",
31
+ "total_episodes": 10,
32
+ "total_frames": 1634,
33
+ "total_tasks": 10,
34
+ "chunks_size": 1000,
35
+ "data_files_size_in_mb": 100,
36
+ "video_files_size_in_mb": 200,
37
+ "fps": 30,
38
+ "splits": {
39
+ "train": "0:10"
40
+ },
41
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
42
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
43
+ "features": {
44
+ "action": {
45
+ "dtype": "float32",
46
+ "shape": [
47
+ 7
48
+ ],
49
+ "names": null
50
+ },
51
+ "next.done": {
52
+ "dtype": "bool",
53
+ "shape": [
54
+ 1
55
+ ],
56
+ "names": null
57
+ },
58
+ "next.success": {
59
+ "dtype": "bool",
60
+ "shape": [
61
+ 1
62
+ ],
63
+ "names": null
64
+ },
65
+ "next.reward": {
66
+ "dtype": "float32",
67
+ "shape": [
68
+ 1
69
+ ],
70
+ "names": null
71
+ },
72
+ "next.truncated": {
73
+ "dtype": "bool",
74
+ "shape": [
75
+ 1
76
+ ],
77
+ "names": null
78
+ },
79
+ "observation.images.image": {
80
+ "dtype": "video",
81
+ "shape": [
82
+ 3,
83
+ 256,
84
+ 256
85
+ ],
86
+ "names": [
87
+ "channel",
88
+ "height",
89
+ "width"
90
+ ],
91
+ "info": {
92
+ "video.height": 256,
93
+ "video.width": 256,
94
+ "video.codec": "av1",
95
+ "video.pix_fmt": "yuv420p",
96
+ "video.is_depth_map": false,
97
+ "video.fps": 30,
98
+ "video.channels": 3,
99
+ "has_audio": false
100
+ }
101
+ },
102
+ "observation.images.image2": {
103
+ "dtype": "video",
104
+ "shape": [
105
+ 3,
106
+ 256,
107
+ 256
108
+ ],
109
+ "names": [
110
+ "channel",
111
+ "height",
112
+ "width"
113
+ ],
114
+ "info": {
115
+ "video.height": 256,
116
+ "video.width": 256,
117
+ "video.codec": "av1",
118
+ "video.pix_fmt": "yuv420p",
119
+ "video.is_depth_map": false,
120
+ "video.fps": 30,
121
+ "video.channels": 3,
122
+ "has_audio": false
123
+ }
124
+ },
125
+ "observation.state": {
126
+ "dtype": "float32",
127
+ "shape": [
128
+ 8
129
+ ],
130
+ "names": [
131
+ "state"
132
+ ]
133
+ },
134
+ "success": {
135
+ "dtype": "bool",
136
+ "shape": [
137
+ 1
138
+ ],
139
+ "names": null
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
+ ```