aractingi HF Staff commited on
Commit
6ba3f81
·
verified ·
1 Parent(s): e6aac71

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +158 -0
README.md ADDED
@@ -0,0 +1,158 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "unknown",
29
+ "total_episodes": 203,
30
+ "total_frames": 25191,
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:203"
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
+ "observation.image": {
43
+ "dtype": "video",
44
+ "shape": [
45
+ 96,
46
+ 96,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channel"
53
+ ],
54
+ "video_info": {
55
+ "video.fps": 10.0,
56
+ "video.codec": "av1",
57
+ "video.pix_fmt": "yuv420p",
58
+ "video.is_depth_map": false,
59
+ "has_audio": false
60
+ }
61
+ },
62
+ "observation.state": {
63
+ "dtype": "float32",
64
+ "shape": [
65
+ 2
66
+ ],
67
+ "names": {
68
+ "motors": [
69
+ "motor_0",
70
+ "motor_1"
71
+ ]
72
+ },
73
+ "fps": 10.0
74
+ },
75
+ "action": {
76
+ "dtype": "float32",
77
+ "shape": [
78
+ 2
79
+ ],
80
+ "names": {
81
+ "motors": [
82
+ "motor_0",
83
+ "motor_1"
84
+ ]
85
+ },
86
+ "fps": 10.0
87
+ },
88
+ "episode_index": {
89
+ "dtype": "int64",
90
+ "shape": [
91
+ 1
92
+ ],
93
+ "names": null
94
+ },
95
+ "frame_index": {
96
+ "dtype": "int64",
97
+ "shape": [
98
+ 1
99
+ ],
100
+ "names": null
101
+ },
102
+ "timestamp": {
103
+ "dtype": "float32",
104
+ "shape": [
105
+ 1
106
+ ],
107
+ "names": null
108
+ },
109
+ "next.reward": {
110
+ "dtype": "float32",
111
+ "shape": [
112
+ 1
113
+ ],
114
+ "names": null,
115
+ "fps": 10.0
116
+ },
117
+ "next.done": {
118
+ "dtype": "bool",
119
+ "shape": [
120
+ 1
121
+ ],
122
+ "names": null,
123
+ "fps": 10.0
124
+ },
125
+ "next.success": {
126
+ "dtype": "bool",
127
+ "shape": [
128
+ 1
129
+ ],
130
+ "names": null,
131
+ "fps": 10.0
132
+ },
133
+ "index": {
134
+ "dtype": "int64",
135
+ "shape": [
136
+ 1
137
+ ],
138
+ "names": null
139
+ },
140
+ "task_index": {
141
+ "dtype": "int64",
142
+ "shape": [
143
+ 1
144
+ ],
145
+ "names": null
146
+ }
147
+ }
148
+ }
149
+ ```
150
+
151
+
152
+ ## Citation
153
+
154
+ **BibTeX:**
155
+
156
+ ```bibtex
157
+ [More Information Needed]
158
+ ```