anvilbot-patrickhhh commited on
Commit
be8e247
·
verified ·
1 Parent(s): 8e8e2b8

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +181 -0
README.md ADDED
@@ -0,0 +1,181 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "anvil_openarm",
29
+ "total_episodes": 2,
30
+ "total_frames": 651,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 200,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:2"
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.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 6
46
+ ],
47
+ "names": [
48
+ "follower1_motor1.position",
49
+ "follower1_motor2.position",
50
+ "follower1_motor3.position",
51
+ "follower1_motor4.position",
52
+ "follower1_motor5.position",
53
+ "follower1_motor6.position"
54
+ ]
55
+ },
56
+ "observation.images.head": {
57
+ "dtype": "video",
58
+ "shape": [
59
+ 480,
60
+ 640,
61
+ 3
62
+ ],
63
+ "names": [
64
+ "height",
65
+ "width",
66
+ "channels"
67
+ ],
68
+ "info": {
69
+ "video.height": 480,
70
+ "video.width": 640,
71
+ "video.codec": "av1",
72
+ "video.pix_fmt": "yuv420p",
73
+ "video.is_depth_map": false,
74
+ "video.fps": 30,
75
+ "video.channels": 3,
76
+ "has_audio": false
77
+ }
78
+ },
79
+ "observation.velocity": {
80
+ "dtype": "float32",
81
+ "shape": [
82
+ 6
83
+ ],
84
+ "names": [
85
+ "follower1_motor1.velocity",
86
+ "follower1_motor2.velocity",
87
+ "follower1_motor3.velocity",
88
+ "follower1_motor4.velocity",
89
+ "follower1_motor5.velocity",
90
+ "follower1_motor6.velocity"
91
+ ]
92
+ },
93
+ "observation.temp_mos": {
94
+ "dtype": "float32",
95
+ "shape": [
96
+ 6
97
+ ],
98
+ "names": [
99
+ "follower1_motor1.temp_mos",
100
+ "follower1_motor2.temp_mos",
101
+ "follower1_motor3.temp_mos",
102
+ "follower1_motor4.temp_mos",
103
+ "follower1_motor5.temp_mos",
104
+ "follower1_motor6.temp_mos"
105
+ ]
106
+ },
107
+ "observation.temp_rotor": {
108
+ "dtype": "float32",
109
+ "shape": [
110
+ 6
111
+ ],
112
+ "names": [
113
+ "follower1_motor1.temp_rotor",
114
+ "follower1_motor2.temp_rotor",
115
+ "follower1_motor3.temp_rotor",
116
+ "follower1_motor4.temp_rotor",
117
+ "follower1_motor5.temp_rotor",
118
+ "follower1_motor6.temp_rotor"
119
+ ]
120
+ },
121
+ "action": {
122
+ "dtype": "float32",
123
+ "shape": [
124
+ 6
125
+ ],
126
+ "names": [
127
+ "follower1_motor1.position",
128
+ "follower1_motor2.position",
129
+ "follower1_motor3.position",
130
+ "follower1_motor4.position",
131
+ "follower1_motor5.position",
132
+ "follower1_motor6.position"
133
+ ]
134
+ },
135
+ "timestamp": {
136
+ "dtype": "float32",
137
+ "shape": [
138
+ 1
139
+ ],
140
+ "names": null
141
+ },
142
+ "frame_index": {
143
+ "dtype": "int64",
144
+ "shape": [
145
+ 1
146
+ ],
147
+ "names": null
148
+ },
149
+ "episode_index": {
150
+ "dtype": "int64",
151
+ "shape": [
152
+ 1
153
+ ],
154
+ "names": null
155
+ },
156
+ "index": {
157
+ "dtype": "int64",
158
+ "shape": [
159
+ 1
160
+ ],
161
+ "names": null
162
+ },
163
+ "task_index": {
164
+ "dtype": "int64",
165
+ "shape": [
166
+ 1
167
+ ],
168
+ "names": null
169
+ }
170
+ }
171
+ }
172
+ ```
173
+
174
+
175
+ ## Citation
176
+
177
+ **BibTeX:**
178
+
179
+ ```bibtex
180
+ [More Information Needed]
181
+ ```