lilkm commited on
Commit
84b9bd3
·
verified ·
1 Parent(s): 6f9e91d

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": null,
29
+ "total_episodes": 3,
30
+ "total_frames": 300,
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:3"
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": {
48
+ "delta_x": 0,
49
+ "delta_y": 1,
50
+ "delta_z": 2,
51
+ "gripper": 3
52
+ }
53
+ },
54
+ "next.reward": {
55
+ "dtype": "float32",
56
+ "shape": [
57
+ 1
58
+ ],
59
+ "names": null
60
+ },
61
+ "next.done": {
62
+ "dtype": "bool",
63
+ "shape": [
64
+ 1
65
+ ],
66
+ "names": null
67
+ },
68
+ "complementary_info.discrete_penalty": {
69
+ "dtype": "float32",
70
+ "shape": [
71
+ 1
72
+ ],
73
+ "names": [
74
+ "discrete_penalty"
75
+ ]
76
+ },
77
+ "observation.images.front": {
78
+ "dtype": "video",
79
+ "shape": [
80
+ 3,
81
+ 128,
82
+ 128
83
+ ],
84
+ "names": [
85
+ "channels",
86
+ "height",
87
+ "width"
88
+ ],
89
+ "info": {
90
+ "video.height": 128,
91
+ "video.width": 128,
92
+ "video.codec": "av1",
93
+ "video.pix_fmt": "yuv420p",
94
+ "video.is_depth_map": false,
95
+ "video.fps": 10,
96
+ "video.channels": 3,
97
+ "has_audio": false
98
+ }
99
+ },
100
+ "observation.images.wrist": {
101
+ "dtype": "video",
102
+ "shape": [
103
+ 3,
104
+ 128,
105
+ 128
106
+ ],
107
+ "names": [
108
+ "channels",
109
+ "height",
110
+ "width"
111
+ ],
112
+ "info": {
113
+ "video.height": 128,
114
+ "video.width": 128,
115
+ "video.codec": "av1",
116
+ "video.pix_fmt": "yuv420p",
117
+ "video.is_depth_map": false,
118
+ "video.fps": 10,
119
+ "video.channels": 3,
120
+ "has_audio": false
121
+ }
122
+ },
123
+ "observation.state": {
124
+ "dtype": "float32",
125
+ "shape": [
126
+ 18
127
+ ],
128
+ "names": null
129
+ },
130
+ "timestamp": {
131
+ "dtype": "float32",
132
+ "shape": [
133
+ 1
134
+ ],
135
+ "names": null
136
+ },
137
+ "frame_index": {
138
+ "dtype": "int64",
139
+ "shape": [
140
+ 1
141
+ ],
142
+ "names": null
143
+ },
144
+ "episode_index": {
145
+ "dtype": "int64",
146
+ "shape": [
147
+ 1
148
+ ],
149
+ "names": null
150
+ },
151
+ "index": {
152
+ "dtype": "int64",
153
+ "shape": [
154
+ 1
155
+ ],
156
+ "names": null
157
+ },
158
+ "task_index": {
159
+ "dtype": "int64",
160
+ "shape": [
161
+ 1
162
+ ],
163
+ "names": null
164
+ }
165
+ }
166
+ }
167
+ ```
168
+
169
+
170
+ ## Citation
171
+
172
+ **BibTeX:**
173
+
174
+ ```bibtex
175
+ [More Information Needed]
176
+ ```