jpizarrom commited on
Commit
4cfc9f3
·
verified ·
1 Parent(s): b4f0bbe

Upload README.md with huggingface_hub

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