the-future-dev commited on
Commit
eff5146
·
verified ·
1 Parent(s): 61c3ff3

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
+ - robotics
8
+ - pusht
9
+ - diffusion
10
+ configs:
11
+ - config_name: default
12
+ data_files: data/*/*.parquet
13
+ ---
14
+
15
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
16
+
17
+ ## Dataset Description
18
+
19
+
20
+
21
+ - **Homepage:** [More Information Needed]
22
+ - **Paper:** [More Information Needed]
23
+ - **License:** apache-2.0
24
+
25
+ ## Dataset Structure
26
+
27
+ [meta/info.json](meta/info.json):
28
+ ```json
29
+ {
30
+ "codebase_version": "v2.1",
31
+ "robot_type": "2d pointer",
32
+ "total_episodes": 1,
33
+ "total_frames": 91,
34
+ "total_tasks": 1,
35
+ "total_videos": 0,
36
+ "total_chunks": 1,
37
+ "chunks_size": 1000,
38
+ "fps": 10,
39
+ "splits": {
40
+ "train": "0:1"
41
+ },
42
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
43
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
44
+ "features": {
45
+ "observation.image": {
46
+ "dtype": "image",
47
+ "shape": [
48
+ 96,
49
+ 96,
50
+ 3
51
+ ],
52
+ "names": [
53
+ "height",
54
+ "width",
55
+ "channel"
56
+ ]
57
+ },
58
+ "observation.agent_pos": {
59
+ "dtype": "float32",
60
+ "shape": [
61
+ 2
62
+ ],
63
+ "names": {
64
+ "motors": [
65
+ "motor_0",
66
+ "motor_1"
67
+ ]
68
+ }
69
+ },
70
+ "observation.environment_state": {
71
+ "dtype": "float32",
72
+ "shape": [
73
+ 8,
74
+ 2
75
+ ],
76
+ "names": {
77
+ "motors": [
78
+ "motor_0",
79
+ "motor_1"
80
+ ]
81
+ }
82
+ },
83
+ "observation.goal_state": {
84
+ "dtype": "float32",
85
+ "shape": [
86
+ 8,
87
+ 2
88
+ ],
89
+ "names": {
90
+ "motors": [
91
+ "motor_0",
92
+ "motor_1"
93
+ ]
94
+ }
95
+ },
96
+ "action": {
97
+ "dtype": "float32",
98
+ "shape": [
99
+ 2
100
+ ],
101
+ "names": {
102
+ "motors": [
103
+ "motor_0",
104
+ "motor_1"
105
+ ]
106
+ }
107
+ },
108
+ "next.reward": {
109
+ "dtype": "float32",
110
+ "shape": [
111
+ 1
112
+ ],
113
+ "names": null
114
+ },
115
+ "next.done": {
116
+ "dtype": "bool",
117
+ "shape": [
118
+ 1
119
+ ],
120
+ "names": null
121
+ },
122
+ "next.success": {
123
+ "dtype": "bool",
124
+ "shape": [
125
+ 1
126
+ ],
127
+ "names": null
128
+ },
129
+ "index": {
130
+ "dtype": "int64",
131
+ "shape": [
132
+ 1
133
+ ],
134
+ "names": null
135
+ },
136
+ "episode_index": {
137
+ "dtype": "int64",
138
+ "shape": [
139
+ 1
140
+ ],
141
+ "names": null
142
+ },
143
+ "frame_index": {
144
+ "dtype": "int64",
145
+ "shape": [
146
+ 1
147
+ ],
148
+ "names": null
149
+ },
150
+ "timestamp": {
151
+ "dtype": "float32",
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
+ ```