argus-systems1 commited on
Commit
3d977c2
·
verified ·
1 Parent(s): 7b31995

Upload README.md with huggingface_hub

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