Faless commited on
Commit
211713d
·
verified ·
1 Parent(s): 09249ce

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +172 -0
README.md ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
15
+ <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=Faless/test_view_x_sim">
16
+ <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
17
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl-dark.svg"/>
18
+ </a>
19
+
20
+
21
+ ## Dataset Description
22
+
23
+
24
+
25
+ - **Homepage:** [More Information Needed]
26
+ - **Paper:** [More Information Needed]
27
+ - **License:** apache-2.0
28
+
29
+ ## Dataset Structure
30
+
31
+ [meta/info.json](meta/info.json):
32
+ ```json
33
+ {
34
+ "codebase_version": "v3.0",
35
+ "robot_type": "piper_full",
36
+ "total_episodes": 3,
37
+ "total_frames": 2192,
38
+ "total_tasks": 1,
39
+ "chunks_size": 1000,
40
+ "data_files_size_in_mb": 100,
41
+ "video_files_size_in_mb": 200,
42
+ "fps": 30,
43
+ "splits": {
44
+ "train": "0:3"
45
+ },
46
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
47
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
48
+ "features": {
49
+ "action": {
50
+ "dtype": "float32",
51
+ "names": [
52
+ "joint_1.pos",
53
+ "joint_2.pos",
54
+ "joint_3.pos",
55
+ "joint_4.pos",
56
+ "joint_5.pos",
57
+ "joint_6.pos",
58
+ "gripper.pos"
59
+ ],
60
+ "shape": [
61
+ 7
62
+ ]
63
+ },
64
+ "observation.state": {
65
+ "dtype": "float32",
66
+ "names": [
67
+ "joint_1.pos",
68
+ "joint_2.pos",
69
+ "joint_3.pos",
70
+ "joint_4.pos",
71
+ "joint_5.pos",
72
+ "joint_6.pos",
73
+ "gripper.pos",
74
+ "gripper.tau"
75
+ ],
76
+ "shape": [
77
+ 8
78
+ ]
79
+ },
80
+ "observation.images.image": {
81
+ "dtype": "video",
82
+ "shape": [
83
+ 720,
84
+ 1280,
85
+ 3
86
+ ],
87
+ "names": [
88
+ "height",
89
+ "width",
90
+ "channels"
91
+ ],
92
+ "info": {
93
+ "video.height": 720,
94
+ "video.width": 1280,
95
+ "video.codec": "av1",
96
+ "video.pix_fmt": "yuv420p",
97
+ "video.is_depth_map": false,
98
+ "video.fps": 30,
99
+ "video.channels": 3,
100
+ "has_audio": false
101
+ }
102
+ },
103
+ "observation.images.image2": {
104
+ "dtype": "video",
105
+ "shape": [
106
+ 720,
107
+ 1280,
108
+ 3
109
+ ],
110
+ "names": [
111
+ "height",
112
+ "width",
113
+ "channels"
114
+ ],
115
+ "info": {
116
+ "video.height": 720,
117
+ "video.width": 1280,
118
+ "video.codec": "av1",
119
+ "video.pix_fmt": "yuv420p",
120
+ "video.is_depth_map": false,
121
+ "video.fps": 30,
122
+ "video.channels": 3,
123
+ "has_audio": false
124
+ }
125
+ },
126
+ "timestamp": {
127
+ "dtype": "float32",
128
+ "shape": [
129
+ 1
130
+ ],
131
+ "names": null
132
+ },
133
+ "frame_index": {
134
+ "dtype": "int64",
135
+ "shape": [
136
+ 1
137
+ ],
138
+ "names": null
139
+ },
140
+ "episode_index": {
141
+ "dtype": "int64",
142
+ "shape": [
143
+ 1
144
+ ],
145
+ "names": null
146
+ },
147
+ "index": {
148
+ "dtype": "int64",
149
+ "shape": [
150
+ 1
151
+ ],
152
+ "names": null
153
+ },
154
+ "task_index": {
155
+ "dtype": "int64",
156
+ "shape": [
157
+ 1
158
+ ],
159
+ "names": null
160
+ }
161
+ }
162
+ }
163
+ ```
164
+
165
+
166
+ ## Citation
167
+
168
+ **BibTeX:**
169
+
170
+ ```bibtex
171
+ [More Information Needed]
172
+ ```