nepyope commited on
Commit
e330c22
·
verified ·
1 Parent(s): 5f45a2e

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": "v3.0",
28
+ "robot_type": "unitree_g1",
29
+ "total_episodes": 1,
30
+ "total_frames": 150,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 500,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:1"
38
+ },
39
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
40
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
41
+ "features": {
42
+ "action": {
43
+ "dtype": "float32",
44
+ "names": [
45
+ "kLeftShoulderPitch.pos",
46
+ "kLeftShoulderRoll.pos",
47
+ "kLeftShoulderYaw.pos",
48
+ "kLeftElbow.pos",
49
+ "kLeftWristRoll.pos",
50
+ "kLeftWristPitch.pos",
51
+ "kLeftWristyaw.pos",
52
+ "kRightShoulderPitch.pos",
53
+ "kRightShoulderRoll.pos",
54
+ "kRightShoulderYaw.pos",
55
+ "kRightElbow.pos",
56
+ "kRightWristRoll.pos",
57
+ "kRightWristPitch.pos",
58
+ "kRightWristYaw.pos"
59
+ ],
60
+ "shape": [
61
+ 14
62
+ ]
63
+ },
64
+ "observation.state": {
65
+ "dtype": "float32",
66
+ "names": [
67
+ "kLeftShoulderPitch.pos",
68
+ "kLeftShoulderRoll.pos",
69
+ "kLeftShoulderYaw.pos",
70
+ "kLeftElbow.pos",
71
+ "kLeftWristRoll.pos",
72
+ "kLeftWristPitch.pos",
73
+ "kLeftWristyaw.pos",
74
+ "kRightShoulderPitch.pos",
75
+ "kRightShoulderRoll.pos",
76
+ "kRightShoulderYaw.pos",
77
+ "kRightElbow.pos",
78
+ "kRightWristRoll.pos",
79
+ "kRightWristPitch.pos",
80
+ "kRightWristYaw.pos"
81
+ ],
82
+ "shape": [
83
+ 14
84
+ ]
85
+ },
86
+ "observation.images.remote_head": {
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.height": 480,
100
+ "video.width": 640,
101
+ "video.codec": "av1",
102
+ "video.pix_fmt": "yuv420p",
103
+ "video.is_depth_map": false,
104
+ "video.fps": 30,
105
+ "video.channels": 3,
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
+ ```