kasiv008 commited on
Commit
2df3883
·
verified ·
1 Parent(s): cdb12cc

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +162 -0
README.md CHANGED
@@ -1,8 +1,170 @@
1
  ---
 
2
  task_categories:
3
  - robotics
4
  tags:
5
  - LeRobot
 
 
 
 
6
  ---
 
7
  This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
3
  task_categories:
4
  - robotics
5
  tags:
6
  - LeRobot
7
+ - u850
8
+ configs:
9
+ - config_name: default
10
+ data_files: data/*/*.parquet
11
  ---
12
+
13
  This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
14
 
15
+ ## Dataset Description
16
+
17
+
18
+
19
+ - **Homepage:** [More Information Needed]
20
+ - **Paper:** [More Information Needed]
21
+ - **License:** apache-2.0
22
+
23
+ ## Dataset Structure
24
+
25
+ [meta/info.json](meta/info.json):
26
+ ```json
27
+ {
28
+ "codebase_version": "v2.0",
29
+ "robot_type": "u850",
30
+ "total_episodes": 1,
31
+ "total_frames": 839,
32
+ "total_tasks": 1,
33
+ "total_videos": 2,
34
+ "total_chunks": 1,
35
+ "chunks_size": 1000,
36
+ "fps": 30,
37
+ "splits": {
38
+ "train": "0:1"
39
+ },
40
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
41
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
42
+ "features": {
43
+ "observation.state": {
44
+ "dtype": "float32",
45
+ "shape": [
46
+ 8
47
+ ],
48
+ "names": {
49
+ "motors": [
50
+ "joint1",
51
+ "joint2",
52
+ "joint3",
53
+ "joint4",
54
+ "joint5",
55
+ "joint6",
56
+ "gripper"
57
+ ]
58
+ }
59
+ },
60
+ "observation.images.top": {
61
+ "dtype": "video",
62
+ "shape": [
63
+ 480,
64
+ 640,
65
+ 3
66
+ ],
67
+ "names": [
68
+ "height",
69
+ "width",
70
+ "channels"
71
+ ],
72
+ "video_info": {
73
+ "video.codec": "av1",
74
+ "video.pix_fmt": "yuv420p",
75
+ "video.is_depth_map": false,
76
+ "video.fps": 30,
77
+ "has_audio": false
78
+ }
79
+ },
80
+ "observation.images.wrist": {
81
+ "dtype": "video",
82
+ "shape": [
83
+ 480,
84
+ 640,
85
+ 3
86
+ ],
87
+ "names": [
88
+ "height",
89
+ "width",
90
+ "channels"
91
+ ],
92
+ "video_info": {
93
+ "video.codec": "av1",
94
+ "video.pix_fmt": "yuv420p",
95
+ "video.is_depth_map": false,
96
+ "video.fps": 30,
97
+ "has_audio": false
98
+ }
99
+ },
100
+ "action": {
101
+ "dtype": "float32",
102
+ "shape": [
103
+ 8
104
+ ],
105
+ "names": {
106
+ "motors": [
107
+ "joint1",
108
+ "joint2",
109
+ "joint3",
110
+ "joint4",
111
+ "joint5",
112
+ "joint6",
113
+ "gripper"
114
+ ]
115
+ }
116
+ },
117
+ "episode_index": {
118
+ "dtype": "int64",
119
+ "shape": [
120
+ 1
121
+ ],
122
+ "names": null
123
+ },
124
+ "frame_index": {
125
+ "dtype": "int64",
126
+ "shape": [
127
+ 1
128
+ ],
129
+ "names": null
130
+ },
131
+ "timestamp": {
132
+ "dtype": "float32",
133
+ "shape": [
134
+ 1
135
+ ],
136
+ "names": null
137
+ },
138
+ "next.done": {
139
+ "dtype": "bool",
140
+ "shape": [
141
+ 1
142
+ ],
143
+ "names": null
144
+ },
145
+ "index": {
146
+ "dtype": "int64",
147
+ "shape": [
148
+ 1
149
+ ],
150
+ "names": null
151
+ },
152
+ "task_index": {
153
+ "dtype": "int64",
154
+ "shape": [
155
+ 1
156
+ ],
157
+ "names": null
158
+ }
159
+ }
160
+ }
161
+ ```
162
+
163
+
164
+ ## Citation
165
+
166
+ **BibTeX:**
167
+
168
+ ```bibtex
169
+ [More Information Needed]
170
+ ```