wdther commited on
Commit
33e6e89
·
verified ·
1 Parent(s): 0473bc0

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +168 -35
README.md CHANGED
@@ -1,35 +1,168 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: observation.state
5
- sequence: float32
6
- length: 15
7
- - name: action
8
- sequence: float32
9
- length: 3
10
- - name: episode_index
11
- dtype: int64
12
- - name: frame_index
13
- dtype: int64
14
- - name: timestamp
15
- dtype: float32
16
- - name: next.done
17
- dtype: bool
18
- - name: index
19
- dtype: int64
20
- - name: observation.images.top
21
- dtype: video_frame
22
- - name: observation.images.front
23
- dtype: video_frame
24
- splits:
25
- - name: train
26
- num_bytes: 81582
27
- num_examples: 381
28
- download_size: 49432
29
- dataset_size: 81582
30
- configs:
31
- - config_name: default
32
- data_files:
33
- - split: train
34
- path: data/train-*
35
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - koch
8
+ configs:
9
+ - config_name: default
10
+ data_files: data/*/*.parquet
11
+ ---
12
+
13
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
14
+
15
+ ## Dataset Description
16
+
17
+
18
+
19
+ - **Homepage:** [More Information Needed]
20
+ - **Paper:** [More Information Needed]
21
+ - **License:** apache-2.0
22
+
23
+ ## Dataset Structure
24
+
25
+ [meta/info.json](meta/info.json):
26
+ ```json
27
+ {
28
+ "codebase_version": "v2.0",
29
+ "robot_type": "koch",
30
+ "total_episodes": 50,
31
+ "total_frames": 381,
32
+ "total_tasks": 1,
33
+ "total_videos": 100,
34
+ "total_chunks": 1,
35
+ "chunks_size": 1000,
36
+ "fps": 226.93560074879693,
37
+ "splits": {
38
+ "train": "0:50"
39
+ },
40
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
41
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
42
+ "features": {
43
+ "observation.state": {
44
+ "dtype": "float32",
45
+ "shape": [
46
+ 15
47
+ ],
48
+ "names": {
49
+ "motors": [
50
+ "shoulder_pan",
51
+ "shoulder_lift",
52
+ "elbow_flex",
53
+ "wrist_flex",
54
+ "wrist_roll",
55
+ "gripper"
56
+ ]
57
+ }
58
+ },
59
+ "action": {
60
+ "dtype": "float32",
61
+ "shape": [
62
+ 3
63
+ ],
64
+ "names": {
65
+ "motors": [
66
+ "shoulder_pan",
67
+ "shoulder_lift",
68
+ "elbow_flex",
69
+ "wrist_flex",
70
+ "wrist_roll",
71
+ "gripper"
72
+ ]
73
+ }
74
+ },
75
+ "episode_index": {
76
+ "dtype": "int64",
77
+ "shape": [
78
+ 1
79
+ ],
80
+ "names": null
81
+ },
82
+ "frame_index": {
83
+ "dtype": "int64",
84
+ "shape": [
85
+ 1
86
+ ],
87
+ "names": null
88
+ },
89
+ "timestamp": {
90
+ "dtype": "float32",
91
+ "shape": [
92
+ 1
93
+ ],
94
+ "names": null
95
+ },
96
+ "next.done": {
97
+ "dtype": "bool",
98
+ "shape": [
99
+ 1
100
+ ],
101
+ "names": null
102
+ },
103
+ "index": {
104
+ "dtype": "int64",
105
+ "shape": [
106
+ 1
107
+ ],
108
+ "names": null
109
+ },
110
+ "observation.images.top": {
111
+ "dtype": "video",
112
+ "shape": [
113
+ 240,
114
+ 320,
115
+ 3
116
+ ],
117
+ "names": [
118
+ "height",
119
+ "width",
120
+ "channel"
121
+ ],
122
+ "video_info": {
123
+ "video.fps": 177.0321199143469,
124
+ "video.codec": "h264",
125
+ "video.pix_fmt": "yuv444p",
126
+ "video.is_depth_map": false,
127
+ "has_audio": false
128
+ }
129
+ },
130
+ "observation.images.front": {
131
+ "dtype": "video",
132
+ "shape": [
133
+ 240,
134
+ 320,
135
+ 3
136
+ ],
137
+ "names": [
138
+ "height",
139
+ "width",
140
+ "channel"
141
+ ],
142
+ "video_info": {
143
+ "video.fps": 177.0321199143469,
144
+ "video.codec": "h264",
145
+ "video.pix_fmt": "yuv444p",
146
+ "video.is_depth_map": false,
147
+ "has_audio": false
148
+ }
149
+ },
150
+ "task_index": {
151
+ "dtype": "int64",
152
+ "shape": [
153
+ 1
154
+ ],
155
+ "names": null
156
+ }
157
+ }
158
+ }
159
+ ```
160
+
161
+
162
+ ## Citation
163
+
164
+ **BibTeX:**
165
+
166
+ ```bibtex
167
+ [More Information Needed]
168
+ ```