the-future-dev commited on
Commit
70d68da
·
verified ·
1 Parent(s): d180b94

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +182 -0
README.md ADDED
@@ -0,0 +1,182 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 200,
30
+ "total_frames": 20000,
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:200"
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
+ "observation.image": {
43
+ "dtype": "image",
44
+ "shape": [
45
+ 128,
46
+ 128,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channels"
53
+ ]
54
+ },
55
+ "observation.state": {
56
+ "dtype": "float32",
57
+ "shape": [
58
+ 6
59
+ ],
60
+ "names": [
61
+ "picker1_x",
62
+ "picker1_y",
63
+ "picker1_z",
64
+ "picker2_x",
65
+ "picker2_y",
66
+ "picker2_z"
67
+ ]
68
+ },
69
+ "observation.environment_state": {
70
+ "dtype": "float32",
71
+ "shape": [
72
+ 12
73
+ ],
74
+ "names": [
75
+ "kp1_x",
76
+ "kp1_y",
77
+ "kp1_z",
78
+ "kp2_x",
79
+ "kp2_y",
80
+ "kp2_z",
81
+ "kp3_x",
82
+ "kp3_y",
83
+ "kp3_z",
84
+ "kp4_x",
85
+ "kp4_y",
86
+ "kp4_z"
87
+ ]
88
+ },
89
+ "action": {
90
+ "dtype": "float32",
91
+ "shape": [
92
+ 8
93
+ ],
94
+ "names": [
95
+ "a0",
96
+ "a1",
97
+ "a2",
98
+ "a3",
99
+ "a4",
100
+ "a5",
101
+ "a6",
102
+ "a7"
103
+ ]
104
+ },
105
+ "next.reward": {
106
+ "dtype": "float32",
107
+ "shape": [
108
+ 1
109
+ ],
110
+ "names": null
111
+ },
112
+ "next.done": {
113
+ "dtype": "bool",
114
+ "shape": [
115
+ 1
116
+ ],
117
+ "names": null
118
+ },
119
+ "timestamp": {
120
+ "dtype": "float32",
121
+ "shape": [
122
+ 1
123
+ ],
124
+ "names": null
125
+ },
126
+ "frame_index": {
127
+ "dtype": "int64",
128
+ "shape": [
129
+ 1
130
+ ],
131
+ "names": null
132
+ },
133
+ "episode_index": {
134
+ "dtype": "int64",
135
+ "shape": [
136
+ 1
137
+ ],
138
+ "names": null
139
+ },
140
+ "index": {
141
+ "dtype": "int64",
142
+ "shape": [
143
+ 1
144
+ ],
145
+ "names": null
146
+ },
147
+ "task_index": {
148
+ "dtype": "int64",
149
+ "shape": [
150
+ 1
151
+ ],
152
+ "names": null
153
+ }
154
+ },
155
+ "metadata": {
156
+ "env_kwargs": {
157
+ "observation_mode": "key_point",
158
+ "action_mode": "picker",
159
+ "num_picker": 2,
160
+ "render": true,
161
+ "headless": 1,
162
+ "horizon": 100,
163
+ "action_repeat": 8,
164
+ "render_mode": "cloth",
165
+ "num_variations": 25,
166
+ "use_cached_states": true,
167
+ "deterministic": false,
168
+ "save_cached_states": false,
169
+ "ir_reward_weight": 0
170
+ }
171
+ }
172
+ }
173
+ ```
174
+
175
+
176
+ ## Citation
177
+
178
+ **BibTeX:**
179
+
180
+ ```bibtex
181
+ [More Information Needed]
182
+ ```