Beegbrain commited on
Commit
8d3b665
·
verified ·
1 Parent(s): 16c86dc

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +151 -0
README.md ADDED
@@ -0,0 +1,151 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 200,
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.image": {
84
+ "dtype": "image",
85
+ "shape": [
86
+ 3,
87
+ 224,
88
+ 224
89
+ ],
90
+ "names": [
91
+ "channels",
92
+ "height",
93
+ "width"
94
+ ],
95
+ "fps": 80
96
+ },
97
+ "task_id": {
98
+ "dtype": "int16",
99
+ "shape": [
100
+ 1
101
+ ],
102
+ "names": null,
103
+ "fps": 80
104
+ },
105
+ "timestamp": {
106
+ "dtype": "float32",
107
+ "shape": [
108
+ 1
109
+ ],
110
+ "names": null
111
+ },
112
+ "frame_index": {
113
+ "dtype": "int64",
114
+ "shape": [
115
+ 1
116
+ ],
117
+ "names": null
118
+ },
119
+ "episode_index": {
120
+ "dtype": "int64",
121
+ "shape": [
122
+ 1
123
+ ],
124
+ "names": null
125
+ },
126
+ "index": {
127
+ "dtype": "int64",
128
+ "shape": [
129
+ 1
130
+ ],
131
+ "names": null
132
+ },
133
+ "task_index": {
134
+ "dtype": "int64",
135
+ "shape": [
136
+ 1
137
+ ],
138
+ "names": null
139
+ }
140
+ }
141
+ }
142
+ ```
143
+
144
+
145
+ ## Citation
146
+
147
+ **BibTeX:**
148
+
149
+ ```bibtex
150
+ [More Information Needed]
151
+ ```