F-Fer commited on
Commit
b3ebb3a
·
verified ·
1 Parent(s): dc1258d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +168 -0
README.md ADDED
@@ -0,0 +1,168 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "ur5e",
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": 60,
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
+ "joint_0",
44
+ "joint_1",
45
+ "joint_2",
46
+ "joint_3",
47
+ "joint_4",
48
+ "joint_5",
49
+ "gripper"
50
+ ],
51
+ "shape": [
52
+ 7
53
+ ]
54
+ },
55
+ "observation.state": {
56
+ "dtype": "float32",
57
+ "names": [
58
+ "joint_0",
59
+ "joint_1",
60
+ "joint_2",
61
+ "joint_3",
62
+ "joint_4",
63
+ "joint_5",
64
+ "gripper"
65
+ ],
66
+ "shape": [
67
+ 7
68
+ ]
69
+ },
70
+ "observation.images.zed2i_left": {
71
+ "dtype": "video",
72
+ "shape": [
73
+ 376,
74
+ 672,
75
+ 3
76
+ ],
77
+ "names": [
78
+ "height",
79
+ "width",
80
+ "channels"
81
+ ]
82
+ },
83
+ "observation.images.zed2i_right": {
84
+ "dtype": "video",
85
+ "shape": [
86
+ 376,
87
+ 672,
88
+ 3
89
+ ],
90
+ "names": [
91
+ "height",
92
+ "width",
93
+ "channels"
94
+ ]
95
+ },
96
+ "observation.images.zedm_left": {
97
+ "dtype": "video",
98
+ "shape": [
99
+ 376,
100
+ 672,
101
+ 3
102
+ ],
103
+ "names": [
104
+ "height",
105
+ "width",
106
+ "channels"
107
+ ]
108
+ },
109
+ "observation.images.zedm_right": {
110
+ "dtype": "video",
111
+ "shape": [
112
+ 376,
113
+ 672,
114
+ 3
115
+ ],
116
+ "names": [
117
+ "height",
118
+ "width",
119
+ "channels"
120
+ ]
121
+ },
122
+ "timestamp": {
123
+ "dtype": "float32",
124
+ "shape": [
125
+ 1
126
+ ],
127
+ "names": null
128
+ },
129
+ "frame_index": {
130
+ "dtype": "int64",
131
+ "shape": [
132
+ 1
133
+ ],
134
+ "names": null
135
+ },
136
+ "episode_index": {
137
+ "dtype": "int64",
138
+ "shape": [
139
+ 1
140
+ ],
141
+ "names": null
142
+ },
143
+ "index": {
144
+ "dtype": "int64",
145
+ "shape": [
146
+ 1
147
+ ],
148
+ "names": null
149
+ },
150
+ "task_index": {
151
+ "dtype": "int64",
152
+ "shape": [
153
+ 1
154
+ ],
155
+ "names": null
156
+ }
157
+ }
158
+ }
159
+ ```
160
+
161
+
162
+ ## Citation
163
+
164
+ **BibTeX:**
165
+
166
+ ```bibtex
167
+ [More Information Needed]
168
+ ```