the-future-dev commited on
Commit
075109f
·
verified ·
1 Parent(s): 262a1cd

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": "v3.0",
28
+ "robot_type": null,
29
+ "total_episodes": 100,
30
+ "total_frames": 10000,
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:100"
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
+ 96,
46
+ 96,
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": null
75
+ },
76
+ "action": {
77
+ "dtype": "float32",
78
+ "shape": [
79
+ 8
80
+ ],
81
+ "names": [
82
+ "a0",
83
+ "a1",
84
+ "a2",
85
+ "a3",
86
+ "a4",
87
+ "a5",
88
+ "a6",
89
+ "a7"
90
+ ]
91
+ },
92
+ "next.reward": {
93
+ "dtype": "float32",
94
+ "shape": [
95
+ 1
96
+ ],
97
+ "names": null
98
+ },
99
+ "next.done": {
100
+ "dtype": "bool",
101
+ "shape": [
102
+ 1
103
+ ],
104
+ "names": null
105
+ },
106
+ "normalized_performance": {
107
+ "dtype": "float32",
108
+ "shape": [
109
+ 1
110
+ ],
111
+ "names": null
112
+ },
113
+ "timestamp": {
114
+ "dtype": "float32",
115
+ "shape": [
116
+ 1
117
+ ],
118
+ "names": null
119
+ },
120
+ "frame_index": {
121
+ "dtype": "int64",
122
+ "shape": [
123
+ 1
124
+ ],
125
+ "names": null
126
+ },
127
+ "episode_index": {
128
+ "dtype": "int64",
129
+ "shape": [
130
+ 1
131
+ ],
132
+ "names": null
133
+ },
134
+ "index": {
135
+ "dtype": "int64",
136
+ "shape": [
137
+ 1
138
+ ],
139
+ "names": null
140
+ },
141
+ "task_index": {
142
+ "dtype": "int64",
143
+ "shape": [
144
+ 1
145
+ ],
146
+ "names": null
147
+ }
148
+ },
149
+ "metadata": {
150
+ "env_kwargs": {
151
+ "observation_mode": "key_point",
152
+ "action_mode": "picker",
153
+ "num_picker": 2,
154
+ "render": true,
155
+ "headless": true,
156
+ "horizon": 100,
157
+ "action_repeat": 8,
158
+ "render_mode": "cloth",
159
+ "num_variations": 200,
160
+ "use_cached_states": true,
161
+ "deterministic": false,
162
+ "save_cached_states": false
163
+ }
164
+ }
165
+ }
166
+ ```
167
+
168
+
169
+ ## Citation
170
+
171
+ **BibTeX:**
172
+
173
+ ```bibtex
174
+ [More Information Needed]
175
+ ```