ar0s commited on
Commit
d990df1
·
verified ·
1 Parent(s): 2ac5e51

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +162 -26
README.md CHANGED
@@ -1,30 +1,166 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: action
5
- list: float32
6
- length: 24
7
- - name: observation.state
8
- list: float32
9
- - name: timestamp
10
- dtype: float32
11
- - name: frame_index
12
- dtype: int64
13
- - name: episode_index
14
- dtype: int64
15
- - name: index
16
- dtype: int64
17
- - name: task_index
18
- dtype: int64
19
- splits:
20
- - name: train
21
- num_bytes: 3215772
22
- num_examples: 16407
23
- download_size: 3838656
24
- dataset_size: 3215772
25
  configs:
26
  - config_name: default
27
- data_files:
28
- - split: train
29
- path: data/train-*
30
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "ergocub",
29
+ "total_episodes": 6,
30
+ "total_frames": 16407,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 500,
35
+ "fps": 10,
36
+ "splits": {
37
+ "train": "0:6"
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
+ "left_hand.position.x",
46
+ "left_hand.position.y",
47
+ "left_hand.position.z",
48
+ "left_hand.orientation.d1",
49
+ "left_hand.orientation.d2",
50
+ "left_hand.orientation.d3",
51
+ "left_hand.orientation.d4",
52
+ "left_hand.orientation.d5",
53
+ "left_hand.orientation.d6",
54
+ "right_hand.position.x",
55
+ "right_hand.position.y",
56
+ "right_hand.position.z",
57
+ "right_hand.orientation.d1",
58
+ "right_hand.orientation.d2",
59
+ "right_hand.orientation.d3",
60
+ "right_hand.orientation.d4",
61
+ "right_hand.orientation.d5",
62
+ "right_hand.orientation.d6",
63
+ "head.orientation.d1",
64
+ "head.orientation.d2",
65
+ "head.orientation.d3",
66
+ "head.orientation.d4",
67
+ "head.orientation.d5",
68
+ "head.orientation.d6"
69
+ ],
70
+ "shape": [
71
+ 24
72
+ ]
73
+ },
74
+ "observation.state": {
75
+ "dtype": "float32",
76
+ "names": [
77
+ "left_hand.position.x",
78
+ "left_hand.position.y",
79
+ "left_hand.position.z",
80
+ "left_hand.orientation.x",
81
+ "left_hand.orientation.y",
82
+ "left_hand.orientation.z",
83
+ "right_hand.position.x",
84
+ "right_hand.position.y",
85
+ "right_hand.position.z",
86
+ "right_hand.orientation.x",
87
+ "right_hand.orientation.y",
88
+ "right_hand.orientation.z",
89
+ "head.orientation.x",
90
+ "head.orientation.y",
91
+ "head.orientation.z"
92
+ ],
93
+ "shape": [
94
+ 15
95
+ ]
96
+ },
97
+ "observation.images.egocentric": {
98
+ "dtype": "video",
99
+ "shape": [
100
+ 480,
101
+ 640,
102
+ 3
103
+ ],
104
+ "names": [
105
+ "height",
106
+ "width",
107
+ "channels"
108
+ ],
109
+ "info": {
110
+ "video.height": 480,
111
+ "video.width": 640,
112
+ "video.codec": "av1",
113
+ "video.pix_fmt": "yuv420p",
114
+ "video.is_depth_map": false,
115
+ "video.fps": 10,
116
+ "video.channels": 3,
117
+ "has_audio": false
118
+ }
119
+ },
120
+ "timestamp": {
121
+ "dtype": "float32",
122
+ "shape": [
123
+ 1
124
+ ],
125
+ "names": null
126
+ },
127
+ "frame_index": {
128
+ "dtype": "int64",
129
+ "shape": [
130
+ 1
131
+ ],
132
+ "names": null
133
+ },
134
+ "episode_index": {
135
+ "dtype": "int64",
136
+ "shape": [
137
+ 1
138
+ ],
139
+ "names": null
140
+ },
141
+ "index": {
142
+ "dtype": "int64",
143
+ "shape": [
144
+ 1
145
+ ],
146
+ "names": null
147
+ },
148
+ "task_index": {
149
+ "dtype": "int64",
150
+ "shape": [
151
+ 1
152
+ ],
153
+ "names": null
154
+ }
155
+ }
156
+ }
157
+ ```
158
+
159
+
160
+ ## Citation
161
+
162
+ **BibTeX:**
163
+
164
+ ```bibtex
165
+ [More Information Needed]
166
+ ```