the-future-dev commited on
Commit
09db3be
·
verified ·
1 Parent(s): bcc0398

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +186 -0
README.md ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 8000,
30
+ "total_frames": 48000,
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:8000"
38
+ },
39
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
40
+ "video_path": null,
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
+ 12
93
+ ],
94
+ "names": [
95
+ "a0",
96
+ "a1",
97
+ "a2",
98
+ "a3",
99
+ "a4",
100
+ "a5",
101
+ "a6",
102
+ "a7",
103
+ "a8",
104
+ "a9",
105
+ "a10",
106
+ "a11"
107
+ ]
108
+ },
109
+ "next.reward": {
110
+ "dtype": "float32",
111
+ "shape": [
112
+ 1
113
+ ],
114
+ "names": null
115
+ },
116
+ "next.done": {
117
+ "dtype": "bool",
118
+ "shape": [
119
+ 1
120
+ ],
121
+ "names": null
122
+ },
123
+ "timestamp": {
124
+ "dtype": "float32",
125
+ "shape": [
126
+ 1
127
+ ],
128
+ "names": null
129
+ },
130
+ "frame_index": {
131
+ "dtype": "int64",
132
+ "shape": [
133
+ 1
134
+ ],
135
+ "names": null
136
+ },
137
+ "episode_index": {
138
+ "dtype": "int64",
139
+ "shape": [
140
+ 1
141
+ ],
142
+ "names": null
143
+ },
144
+ "index": {
145
+ "dtype": "int64",
146
+ "shape": [
147
+ 1
148
+ ],
149
+ "names": null
150
+ },
151
+ "task_index": {
152
+ "dtype": "int64",
153
+ "shape": [
154
+ 1
155
+ ],
156
+ "names": null
157
+ }
158
+ },
159
+ "metadata": {
160
+ "env_kwargs": {
161
+ "observation_mode": "key_point",
162
+ "action_mode": "pickerpickandplace",
163
+ "num_picker": 2,
164
+ "render": true,
165
+ "headless": 1,
166
+ "horizon": 6,
167
+ "action_repeat": 1,
168
+ "render_mode": "cloth",
169
+ "num_variations": 1000,
170
+ "use_cached_states": true,
171
+ "deterministic": false,
172
+ "save_cached_states": false,
173
+ "ir_reward_weight": 0
174
+ }
175
+ }
176
+ }
177
+ ```
178
+
179
+
180
+ ## Citation
181
+
182
+ **BibTeX:**
183
+
184
+ ```bibtex
185
+ [More Information Needed]
186
+ ```