lukicdarkoo commited on
Commit
979c4b0
·
verified ·
1 Parent(s): 5c339bc

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +182 -0
README.md ADDED
@@ -0,0 +1,182 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "v2.1",
28
+ "robot_type": "xarm_end_effector",
29
+ "total_episodes": 1,
30
+ "total_frames": 745,
31
+ "total_tasks": 0,
32
+ "total_videos": 2,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 60,
36
+ "splits": {
37
+ "train": "0:1"
38
+ },
39
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
40
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
41
+ "features": {
42
+ "action": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 7
46
+ ],
47
+ "names": [
48
+ "joint1.pos",
49
+ "joint2.pos",
50
+ "joint3.pos",
51
+ "joint4.pos",
52
+ "joint5.pos",
53
+ "joint6.pos",
54
+ "gripper.pos"
55
+ ]
56
+ },
57
+ "observation.state": {
58
+ "dtype": "float32",
59
+ "shape": [
60
+ 25
61
+ ],
62
+ "names": [
63
+ "joint1.pos",
64
+ "joint2.pos",
65
+ "joint3.pos",
66
+ "joint4.pos",
67
+ "joint5.pos",
68
+ "joint6.pos",
69
+ "gripper.pos",
70
+ "joint1.effort",
71
+ "joint2.effort",
72
+ "joint3.effort",
73
+ "joint4.effort",
74
+ "joint5.effort",
75
+ "joint6.effort",
76
+ "joint1.vel",
77
+ "joint2.vel",
78
+ "joint3.vel",
79
+ "joint4.vel",
80
+ "joint5.vel",
81
+ "joint6.vel",
82
+ "joint1.acc",
83
+ "joint2.acc",
84
+ "joint3.acc",
85
+ "joint4.acc",
86
+ "joint5.acc",
87
+ "joint6.acc"
88
+ ]
89
+ },
90
+ "observation.images.gripper": {
91
+ "dtype": "video",
92
+ "shape": [
93
+ 240,
94
+ 320,
95
+ 3
96
+ ],
97
+ "names": [
98
+ "height",
99
+ "width",
100
+ "channels"
101
+ ],
102
+ "info": {
103
+ "video.height": 240,
104
+ "video.width": 320,
105
+ "video.codec": "av1",
106
+ "video.pix_fmt": "yuv420p",
107
+ "video.is_depth_map": false,
108
+ "video.fps": 60,
109
+ "video.channels": 3,
110
+ "has_audio": false
111
+ }
112
+ },
113
+ "observation.images.fixed": {
114
+ "dtype": "video",
115
+ "shape": [
116
+ 240,
117
+ 320,
118
+ 3
119
+ ],
120
+ "names": [
121
+ "height",
122
+ "width",
123
+ "channels"
124
+ ],
125
+ "info": {
126
+ "video.height": 240,
127
+ "video.width": 320,
128
+ "video.codec": "av1",
129
+ "video.pix_fmt": "yuv420p",
130
+ "video.is_depth_map": false,
131
+ "video.fps": 60,
132
+ "video.channels": 3,
133
+ "has_audio": false
134
+ }
135
+ },
136
+ "timestamp": {
137
+ "dtype": "float32",
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
+ "episode_index": {
151
+ "dtype": "int64",
152
+ "shape": [
153
+ 1
154
+ ],
155
+ "names": null
156
+ },
157
+ "index": {
158
+ "dtype": "int64",
159
+ "shape": [
160
+ 1
161
+ ],
162
+ "names": null
163
+ },
164
+ "task_index": {
165
+ "dtype": "int64",
166
+ "shape": [
167
+ 1
168
+ ],
169
+ "names": null
170
+ }
171
+ }
172
+ }
173
+ ```
174
+
175
+
176
+ ## Citation
177
+
178
+ **BibTeX:**
179
+
180
+ ```bibtex
181
+ [More Information Needed]
182
+ ```