lucasngoo commited on
Commit
75c4760
·
verified ·
1 Parent(s): 47f1fe3

Upload README.md with huggingface_hub

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