Autobrik commited on
Commit
2b3b669
·
verified ·
1 Parent(s): bff7267

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +165 -0
README.md ADDED
@@ -0,0 +1,165 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - robotics
8
+ - humanoid
9
+ - whole-body
10
+ - test
11
+ configs:
12
+ - config_name: default
13
+ data_files: data/*/*.parquet
14
+ ---
15
+
16
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
17
+
18
+
19
+ <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=Autobrik/robonet-test-dummy">
20
+ <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
21
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl-dark.svg"/>
22
+ </a>
23
+
24
+
25
+ ## Dataset Description
26
+
27
+
28
+
29
+ - **Homepage:** [More Information Needed]
30
+ - **Paper:** [More Information Needed]
31
+ - **License:** apache-2.0
32
+
33
+ ## Dataset Structure
34
+
35
+ [meta/info.json](meta/info.json):
36
+ ```json
37
+ {
38
+ "codebase_version": "v3.0",
39
+ "robot_type": "human",
40
+ "total_episodes": 2,
41
+ "total_frames": 120,
42
+ "total_tasks": 2,
43
+ "chunks_size": 1000,
44
+ "data_files_size_in_mb": 100,
45
+ "video_files_size_in_mb": 200,
46
+ "fps": 20,
47
+ "splits": {
48
+ "train": "0:2"
49
+ },
50
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
51
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
52
+ "features": {
53
+ "observation.state.body_poses": {
54
+ "dtype": "float32",
55
+ "shape": [
56
+ 24,
57
+ 7
58
+ ]
59
+ },
60
+ "observation.state.body_velocities": {
61
+ "dtype": "float32",
62
+ "shape": [
63
+ 24,
64
+ 6
65
+ ]
66
+ },
67
+ "observation.state.body_accelerations": {
68
+ "dtype": "float32",
69
+ "shape": [
70
+ 24,
71
+ 6
72
+ ]
73
+ },
74
+ "observation.state.left_hand_joints": {
75
+ "dtype": "float32",
76
+ "shape": [
77
+ 26,
78
+ 7
79
+ ]
80
+ },
81
+ "observation.state.right_hand_joints": {
82
+ "dtype": "float32",
83
+ "shape": [
84
+ 26,
85
+ 7
86
+ ]
87
+ },
88
+ "observation.state.headset_pose": {
89
+ "dtype": "float32",
90
+ "shape": [
91
+ 7
92
+ ]
93
+ },
94
+ "observation.state.tracker_poses": {
95
+ "dtype": "float32",
96
+ "shape": [
97
+ 5,
98
+ 7
99
+ ]
100
+ },
101
+ "observation.images.ego_camera": {
102
+ "dtype": "video",
103
+ "shape": [
104
+ 540,
105
+ 960,
106
+ 3
107
+ ],
108
+ "info": {
109
+ "video.height": 540,
110
+ "video.width": 960,
111
+ "video.codec": "av1",
112
+ "video.pix_fmt": "yuv420p",
113
+ "video.is_depth_map": false,
114
+ "video.fps": 20,
115
+ "video.channels": 3,
116
+ "has_audio": false
117
+ }
118
+ },
119
+ "timestamp": {
120
+ "dtype": "float32",
121
+ "shape": [
122
+ 1
123
+ ],
124
+ "names": null
125
+ },
126
+ "frame_index": {
127
+ "dtype": "int64",
128
+ "shape": [
129
+ 1
130
+ ],
131
+ "names": null
132
+ },
133
+ "episode_index": {
134
+ "dtype": "int64",
135
+ "shape": [
136
+ 1
137
+ ],
138
+ "names": null
139
+ },
140
+ "index": {
141
+ "dtype": "int64",
142
+ "shape": [
143
+ 1
144
+ ],
145
+ "names": null
146
+ },
147
+ "task_index": {
148
+ "dtype": "int64",
149
+ "shape": [
150
+ 1
151
+ ],
152
+ "names": null
153
+ }
154
+ }
155
+ }
156
+ ```
157
+
158
+
159
+ ## Citation
160
+
161
+ **BibTeX:**
162
+
163
+ ```bibtex
164
+ [More Information Needed]
165
+ ```