leolin6 commited on
Commit
9f88111
·
verified ·
1 Parent(s): 0c85219

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +157 -0
README.md ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "zbot",
29
+ "total_episodes": 1,
30
+ "total_frames": 2065,
31
+ "total_tasks": 1,
32
+ "total_videos": 1,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 120,
36
+ "splits": {
37
+ "train": "0:1"
38
+ },
39
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
40
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
41
+ "features": {
42
+ "action": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 10
46
+ ],
47
+ "names": [
48
+ "left_shoulder_pitch.pos",
49
+ "left_shoulder_roll.pos",
50
+ "left_shoulder_yaw.pos",
51
+ "left_elbow.pos",
52
+ "left_wrist.pos",
53
+ "right_shoulder_pitch.pos",
54
+ "right_shoulder_roll.pos",
55
+ "right_shoulder_yaw.pos",
56
+ "right_elbow.pos",
57
+ "right_wrist.pos"
58
+ ]
59
+ },
60
+ "observation.state": {
61
+ "dtype": "float32",
62
+ "shape": [
63
+ 20
64
+ ],
65
+ "names": [
66
+ "left_shoulder_pitch.pos",
67
+ "left_shoulder_pitch.vel",
68
+ "left_shoulder_roll.pos",
69
+ "left_shoulder_roll.vel",
70
+ "left_shoulder_yaw.pos",
71
+ "left_shoulder_yaw.vel",
72
+ "left_elbow.pos",
73
+ "left_elbow.vel",
74
+ "left_wrist.pos",
75
+ "left_wrist.vel",
76
+ "right_shoulder_pitch.pos",
77
+ "right_shoulder_pitch.vel",
78
+ "right_shoulder_roll.pos",
79
+ "right_shoulder_roll.vel",
80
+ "right_shoulder_yaw.pos",
81
+ "right_shoulder_yaw.vel",
82
+ "right_elbow.pos",
83
+ "right_elbow.vel",
84
+ "right_wrist.pos",
85
+ "right_wrist.vel"
86
+ ]
87
+ },
88
+ "observation.images.front": {
89
+ "dtype": "video",
90
+ "shape": [
91
+ 240,
92
+ 320,
93
+ 3
94
+ ],
95
+ "names": [
96
+ "height",
97
+ "width",
98
+ "channels"
99
+ ],
100
+ "info": {
101
+ "video.height": 240,
102
+ "video.width": 320,
103
+ "video.codec": "libdav1d",
104
+ "video.pix_fmt": "yuv420p",
105
+ "video.is_depth_map": false,
106
+ "video.fps": 120,
107
+ "video.channels": 3,
108
+ "has_audio": false
109
+ }
110
+ },
111
+ "timestamp": {
112
+ "dtype": "float32",
113
+ "shape": [
114
+ 1
115
+ ],
116
+ "names": null
117
+ },
118
+ "frame_index": {
119
+ "dtype": "int64",
120
+ "shape": [
121
+ 1
122
+ ],
123
+ "names": null
124
+ },
125
+ "episode_index": {
126
+ "dtype": "int64",
127
+ "shape": [
128
+ 1
129
+ ],
130
+ "names": null
131
+ },
132
+ "index": {
133
+ "dtype": "int64",
134
+ "shape": [
135
+ 1
136
+ ],
137
+ "names": null
138
+ },
139
+ "task_index": {
140
+ "dtype": "int64",
141
+ "shape": [
142
+ 1
143
+ ],
144
+ "names": null
145
+ }
146
+ }
147
+ }
148
+ ```
149
+
150
+
151
+ ## Citation
152
+
153
+ **BibTeX:**
154
+
155
+ ```bibtex
156
+ [More Information Needed]
157
+ ```