benmsorting commited on
Commit
d1db2f3
·
verified ·
1 Parent(s): 9ecb509

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +155 -0
README.md ADDED
@@ -0,0 +1,155 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "xarm",
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": 200,
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
+ "delta_x",
44
+ "delta_y",
45
+ "delta_z",
46
+ "delta_rx",
47
+ "delta_ry",
48
+ "delta_rz",
49
+ "gripper"
50
+ ],
51
+ "shape": [
52
+ 7
53
+ ]
54
+ },
55
+ "observation.state": {
56
+ "dtype": "float32",
57
+ "names": [
58
+ "joint1.pos",
59
+ "joint2.pos",
60
+ "joint3.pos",
61
+ "joint4.pos",
62
+ "joint5.pos",
63
+ "joint6.pos",
64
+ "gripper.pos",
65
+ "aa.x",
66
+ "aa.y",
67
+ "aa.z",
68
+ "aa.rx",
69
+ "aa.ry",
70
+ "aa.rz",
71
+ "prev.delta_x",
72
+ "prev.delta_y",
73
+ "prev.delta_z",
74
+ "prev.delta_rx",
75
+ "prev.delta_ry",
76
+ "prev.delta_rz",
77
+ "prev.gripper"
78
+ ],
79
+ "shape": [
80
+ 20
81
+ ]
82
+ },
83
+ "observation.images.front": {
84
+ "dtype": "video",
85
+ "shape": [
86
+ 540,
87
+ 960,
88
+ 3
89
+ ],
90
+ "names": [
91
+ "height",
92
+ "width",
93
+ "channels"
94
+ ]
95
+ },
96
+ "observation.images.wrist": {
97
+ "dtype": "video",
98
+ "shape": [
99
+ 480,
100
+ 640,
101
+ 3
102
+ ],
103
+ "names": [
104
+ "height",
105
+ "width",
106
+ "channels"
107
+ ]
108
+ },
109
+ "timestamp": {
110
+ "dtype": "float32",
111
+ "shape": [
112
+ 1
113
+ ],
114
+ "names": null
115
+ },
116
+ "frame_index": {
117
+ "dtype": "int64",
118
+ "shape": [
119
+ 1
120
+ ],
121
+ "names": null
122
+ },
123
+ "episode_index": {
124
+ "dtype": "int64",
125
+ "shape": [
126
+ 1
127
+ ],
128
+ "names": null
129
+ },
130
+ "index": {
131
+ "dtype": "int64",
132
+ "shape": [
133
+ 1
134
+ ],
135
+ "names": null
136
+ },
137
+ "task_index": {
138
+ "dtype": "int64",
139
+ "shape": [
140
+ 1
141
+ ],
142
+ "names": null
143
+ }
144
+ }
145
+ }
146
+ ```
147
+
148
+
149
+ ## Citation
150
+
151
+ **BibTeX:**
152
+
153
+ ```bibtex
154
+ [More Information Needed]
155
+ ```