Vertax commited on
Commit
ffc9cc7
·
verified ·
1 Parent(s): fca6333

Upload README.md with huggingface_hub

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