the-future-dev commited on
Commit
8ad6ed8
·
verified ·
1 Parent(s): 57660ae

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +149 -0
README.md ADDED
@@ -0,0 +1,149 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 84,
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.state": {
59
+ "dtype": "float32",
60
+ "shape": [
61
+ 2
62
+ ],
63
+ "names": {
64
+ "motors": [
65
+ "motor_0",
66
+ "motor_1"
67
+ ]
68
+ }
69
+ },
70
+ "action": {
71
+ "dtype": "float32",
72
+ "shape": [
73
+ 2
74
+ ],
75
+ "names": {
76
+ "motors": [
77
+ "motor_0",
78
+ "motor_1"
79
+ ]
80
+ }
81
+ },
82
+ "next.reward": {
83
+ "dtype": "float32",
84
+ "shape": [
85
+ 1
86
+ ],
87
+ "names": null
88
+ },
89
+ "next.done": {
90
+ "dtype": "bool",
91
+ "shape": [
92
+ 1
93
+ ],
94
+ "names": null
95
+ },
96
+ "next.success": {
97
+ "dtype": "bool",
98
+ "shape": [
99
+ 1
100
+ ],
101
+ "names": null
102
+ },
103
+ "index": {
104
+ "dtype": "int64",
105
+ "shape": [
106
+ 1
107
+ ],
108
+ "names": null
109
+ },
110
+ "episode_index": {
111
+ "dtype": "int64",
112
+ "shape": [
113
+ 1
114
+ ],
115
+ "names": null
116
+ },
117
+ "frame_index": {
118
+ "dtype": "int64",
119
+ "shape": [
120
+ 1
121
+ ],
122
+ "names": null
123
+ },
124
+ "timestamp": {
125
+ "dtype": "float32",
126
+ "shape": [
127
+ 1
128
+ ],
129
+ "names": null
130
+ },
131
+ "task_index": {
132
+ "dtype": "int64",
133
+ "shape": [
134
+ 1
135
+ ],
136
+ "names": null
137
+ }
138
+ }
139
+ }
140
+ ```
141
+
142
+
143
+ ## Citation
144
+
145
+ **BibTeX:**
146
+
147
+ ```bibtex
148
+ [More Information Needed]
149
+ ```