Henry-Ellis commited on
Commit
f48d3ee
·
verified ·
1 Parent(s): 9ad9c80

Upload README.md with huggingface_hub

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