Beegbrain commited on
Commit
3aa3a3c
·
verified ·
1 Parent(s): 1dc68e4

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +161 -0
README.md ADDED
@@ -0,0 +1,161 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": null,
29
+ "total_episodes": 500,
30
+ "total_frames": 46327,
31
+ "total_tasks": 10,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 500,
35
+ "fps": 80,
36
+ "splits": {
37
+ "train": "0:500"
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.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 4
46
+ ],
47
+ "names": {
48
+ "axes": null
49
+ },
50
+ "fps": 80
51
+ },
52
+ "action": {
53
+ "dtype": "float32",
54
+ "shape": [
55
+ 4
56
+ ],
57
+ "names": {
58
+ "axes": [
59
+ "x",
60
+ "y",
61
+ "z",
62
+ "gripper"
63
+ ]
64
+ },
65
+ "fps": 80
66
+ },
67
+ "next.reward": {
68
+ "dtype": "float32",
69
+ "shape": [
70
+ 1
71
+ ],
72
+ "names": null,
73
+ "fps": 80
74
+ },
75
+ "next.success": {
76
+ "dtype": "bool",
77
+ "shape": [
78
+ 1
79
+ ],
80
+ "names": null,
81
+ "fps": 80
82
+ },
83
+ "observation.environment_state": {
84
+ "dtype": "float32",
85
+ "shape": [
86
+ 39
87
+ ],
88
+ "names": [
89
+ "keypoints"
90
+ ],
91
+ "fps": 80
92
+ },
93
+ "observation.image": {
94
+ "dtype": "image",
95
+ "shape": [
96
+ 3,
97
+ 480,
98
+ 480
99
+ ],
100
+ "names": [
101
+ "channels",
102
+ "height",
103
+ "width"
104
+ ],
105
+ "fps": 80
106
+ },
107
+ "task_id": {
108
+ "dtype": "int16",
109
+ "shape": [
110
+ 1
111
+ ],
112
+ "names": null,
113
+ "fps": 80
114
+ },
115
+ "timestamp": {
116
+ "dtype": "float32",
117
+ "shape": [
118
+ 1
119
+ ],
120
+ "names": null
121
+ },
122
+ "frame_index": {
123
+ "dtype": "int64",
124
+ "shape": [
125
+ 1
126
+ ],
127
+ "names": null
128
+ },
129
+ "episode_index": {
130
+ "dtype": "int64",
131
+ "shape": [
132
+ 1
133
+ ],
134
+ "names": null
135
+ },
136
+ "index": {
137
+ "dtype": "int64",
138
+ "shape": [
139
+ 1
140
+ ],
141
+ "names": null
142
+ },
143
+ "task_index": {
144
+ "dtype": "int64",
145
+ "shape": [
146
+ 1
147
+ ],
148
+ "names": null
149
+ }
150
+ }
151
+ }
152
+ ```
153
+
154
+
155
+ ## Citation
156
+
157
+ **BibTeX:**
158
+
159
+ ```bibtex
160
+ [More Information Needed]
161
+ ```