noxello commited on
Commit
9a53bbb
·
verified ·
1 Parent(s): c1ac8b5

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +173 -0
README.md ADDED
@@ -0,0 +1,173 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "openarms_follower",
29
+ "total_episodes": 0,
30
+ "total_frames": 0,
31
+ "total_tasks": 0,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 500,
35
+ "fps": 30,
36
+ "splits": {},
37
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
38
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
39
+ "features": {
40
+ "action": {
41
+ "dtype": "float32",
42
+ "names": [
43
+ "right_joint_1.pos",
44
+ "right_joint_2.pos",
45
+ "right_joint_3.pos",
46
+ "right_joint_4.pos",
47
+ "right_joint_5.pos",
48
+ "right_joint_6.pos",
49
+ "right_joint_7.pos",
50
+ "right_gripper.pos",
51
+ "left_joint_1.pos",
52
+ "left_joint_2.pos",
53
+ "left_joint_3.pos",
54
+ "left_joint_4.pos",
55
+ "left_joint_5.pos",
56
+ "left_joint_6.pos",
57
+ "left_joint_7.pos",
58
+ "left_gripper.pos"
59
+ ],
60
+ "shape": [
61
+ 16
62
+ ]
63
+ },
64
+ "observation.state": {
65
+ "dtype": "float32",
66
+ "names": [
67
+ "right_joint_1.pos",
68
+ "right_joint_2.pos",
69
+ "right_joint_3.pos",
70
+ "right_joint_4.pos",
71
+ "right_joint_5.pos",
72
+ "right_joint_6.pos",
73
+ "right_joint_7.pos",
74
+ "right_gripper.pos",
75
+ "left_joint_1.pos",
76
+ "left_joint_2.pos",
77
+ "left_joint_3.pos",
78
+ "left_joint_4.pos",
79
+ "left_joint_5.pos",
80
+ "left_joint_6.pos",
81
+ "left_joint_7.pos",
82
+ "left_gripper.pos"
83
+ ],
84
+ "shape": [
85
+ 16
86
+ ]
87
+ },
88
+ "observation.images.left_wrist": {
89
+ "dtype": "video",
90
+ "shape": [
91
+ 480,
92
+ 640,
93
+ 3
94
+ ],
95
+ "names": [
96
+ "height",
97
+ "width",
98
+ "channels"
99
+ ]
100
+ },
101
+ "observation.images.right_wrist": {
102
+ "dtype": "video",
103
+ "shape": [
104
+ 480,
105
+ 640,
106
+ 3
107
+ ],
108
+ "names": [
109
+ "height",
110
+ "width",
111
+ "channels"
112
+ ]
113
+ },
114
+ "observation.images.base": {
115
+ "dtype": "video",
116
+ "shape": [
117
+ 480,
118
+ 640,
119
+ 3
120
+ ],
121
+ "names": [
122
+ "height",
123
+ "width",
124
+ "channels"
125
+ ]
126
+ },
127
+ "timestamp": {
128
+ "dtype": "float32",
129
+ "shape": [
130
+ 1
131
+ ],
132
+ "names": null
133
+ },
134
+ "frame_index": {
135
+ "dtype": "int64",
136
+ "shape": [
137
+ 1
138
+ ],
139
+ "names": null
140
+ },
141
+ "episode_index": {
142
+ "dtype": "int64",
143
+ "shape": [
144
+ 1
145
+ ],
146
+ "names": null
147
+ },
148
+ "index": {
149
+ "dtype": "int64",
150
+ "shape": [
151
+ 1
152
+ ],
153
+ "names": null
154
+ },
155
+ "task_index": {
156
+ "dtype": "int64",
157
+ "shape": [
158
+ 1
159
+ ],
160
+ "names": null
161
+ }
162
+ }
163
+ }
164
+ ```
165
+
166
+
167
+ ## Citation
168
+
169
+ **BibTeX:**
170
+
171
+ ```bibtex
172
+ [More Information Needed]
173
+ ```