Henry-Ellis commited on
Commit
2fb559e
·
verified ·
1 Parent(s): 4910c85

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +155 -0
README.md ADDED
@@ -0,0 +1,155 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "Unitree_Z1_Dual",
29
+ "total_episodes": 251,
30
+ "total_frames": 133032,
31
+ "total_tasks": 1,
32
+ "total_videos": 251,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:251"
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
+ 14
46
+ ],
47
+ "names": [
48
+ "z1_dual_kLeftWaist",
49
+ "z1_dual_kLeftShoulder",
50
+ "z1_dual_kLeftElbow",
51
+ "z1_dual_kLeftForearmRoll",
52
+ "z1_dual_kLeftWristAngle",
53
+ "z1_dual_kLeftWristRotate",
54
+ "z1_dual_kRightWaist",
55
+ "z1_dual_kRightShoulder",
56
+ "z1_dual_kRightElbow",
57
+ "z1_dual_kRightForearmRoll",
58
+ "z1_dual_kRightWristAngle",
59
+ "z1_dual_kRightWristRotate",
60
+ "gripper_kLeftGripper",
61
+ "gripper_kRightGripper"
62
+ ]
63
+ },
64
+ "observation.state": {
65
+ "dtype": "float32",
66
+ "shape": [
67
+ 14
68
+ ],
69
+ "names": [
70
+ "z1_dual_kLeftWaist",
71
+ "z1_dual_kLeftShoulder",
72
+ "z1_dual_kLeftElbow",
73
+ "z1_dual_kLeftForearmRoll",
74
+ "z1_dual_kLeftWristAngle",
75
+ "z1_dual_kLeftWristRotate",
76
+ "z1_dual_kRightWaist",
77
+ "z1_dual_kRightShoulder",
78
+ "z1_dual_kRightElbow",
79
+ "z1_dual_kRightForearmRoll",
80
+ "z1_dual_kRightWristAngle",
81
+ "z1_dual_kRightWristRotate",
82
+ "gripper_kLeftGripper",
83
+ "gripper_kRightGripper"
84
+ ]
85
+ },
86
+ "observation.images.cam_high": {
87
+ "dtype": "video",
88
+ "shape": [
89
+ 480,
90
+ 640,
91
+ 3
92
+ ],
93
+ "names": [
94
+ "height",
95
+ "width",
96
+ "channels"
97
+ ],
98
+ "info": {
99
+ "video.fps": 30.0,
100
+ "video.height": 480,
101
+ "video.width": 640,
102
+ "video.channels": 3,
103
+ "video.codec": "av1",
104
+ "video.pix_fmt": "yuv420p",
105
+ "video.is_depth_map": false,
106
+ "has_audio": false
107
+ }
108
+ },
109
+ "timestamp": {
110
+ "dtype": "float32",
111
+ "shape": [
112
+ 1
113
+ ],
114
+ "names": null
115
+ },
116
+ "frame_index": {
117
+ "dtype": "int64",
118
+ "shape": [
119
+ 1
120
+ ],
121
+ "names": null
122
+ },
123
+ "episode_index": {
124
+ "dtype": "int64",
125
+ "shape": [
126
+ 1
127
+ ],
128
+ "names": null
129
+ },
130
+ "index": {
131
+ "dtype": "int64",
132
+ "shape": [
133
+ 1
134
+ ],
135
+ "names": null
136
+ },
137
+ "task_index": {
138
+ "dtype": "int64",
139
+ "shape": [
140
+ 1
141
+ ],
142
+ "names": null
143
+ }
144
+ }
145
+ }
146
+ ```
147
+
148
+
149
+ ## Citation
150
+
151
+ **BibTeX:**
152
+
153
+ ```bibtex
154
+ [More Information Needed]
155
+ ```