lilkm commited on
Commit
30480be
·
verified ·
1 Parent(s): 12c1a1a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +171 -0
README.md ADDED
@@ -0,0 +1,171 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 30,
30
+ "total_frames": 519,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 500,
35
+ "fps": 10,
36
+ "splits": {
37
+ "train": "0:30"
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
+ "action": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 4
46
+ ],
47
+ "names": null
48
+ },
49
+ "next.reward": {
50
+ "dtype": "float32",
51
+ "shape": [
52
+ 1
53
+ ],
54
+ "names": null
55
+ },
56
+ "next.done": {
57
+ "dtype": "bool",
58
+ "shape": [
59
+ 1
60
+ ],
61
+ "names": null
62
+ },
63
+ "complementary_info.discrete_penalty": {
64
+ "dtype": "float32",
65
+ "shape": [
66
+ 1
67
+ ],
68
+ "names": [
69
+ "discrete_penalty"
70
+ ]
71
+ },
72
+ "observation.images.front": {
73
+ "dtype": "video",
74
+ "shape": [
75
+ 3,
76
+ 256,
77
+ 256
78
+ ],
79
+ "names": [
80
+ "channels",
81
+ "height",
82
+ "width"
83
+ ],
84
+ "info": {
85
+ "video.height": 256,
86
+ "video.width": 256,
87
+ "video.codec": "av1",
88
+ "video.pix_fmt": "yuv420p",
89
+ "video.is_depth_map": false,
90
+ "video.fps": 10,
91
+ "video.channels": 3,
92
+ "has_audio": false
93
+ }
94
+ },
95
+ "observation.images.wrist": {
96
+ "dtype": "video",
97
+ "shape": [
98
+ 3,
99
+ 128,
100
+ 128
101
+ ],
102
+ "names": [
103
+ "channels",
104
+ "height",
105
+ "width"
106
+ ],
107
+ "info": {
108
+ "video.height": 128,
109
+ "video.width": 128,
110
+ "video.codec": "av1",
111
+ "video.pix_fmt": "yuv420p",
112
+ "video.is_depth_map": false,
113
+ "video.fps": 10,
114
+ "video.channels": 3,
115
+ "has_audio": false
116
+ }
117
+ },
118
+ "observation.state": {
119
+ "dtype": "float32",
120
+ "shape": [
121
+ 18
122
+ ],
123
+ "names": null
124
+ },
125
+ "timestamp": {
126
+ "dtype": "float32",
127
+ "shape": [
128
+ 1
129
+ ],
130
+ "names": null
131
+ },
132
+ "frame_index": {
133
+ "dtype": "int64",
134
+ "shape": [
135
+ 1
136
+ ],
137
+ "names": null
138
+ },
139
+ "episode_index": {
140
+ "dtype": "int64",
141
+ "shape": [
142
+ 1
143
+ ],
144
+ "names": null
145
+ },
146
+ "index": {
147
+ "dtype": "int64",
148
+ "shape": [
149
+ 1
150
+ ],
151
+ "names": null
152
+ },
153
+ "task_index": {
154
+ "dtype": "int64",
155
+ "shape": [
156
+ 1
157
+ ],
158
+ "names": null
159
+ }
160
+ }
161
+ }
162
+ ```
163
+
164
+
165
+ ## Citation
166
+
167
+ **BibTeX:**
168
+
169
+ ```bibtex
170
+ [More Information Needed]
171
+ ```