phicoltan commited on
Commit
7090f0e
·
verified ·
1 Parent(s): 3e2b718

Upload README.md with huggingface_hub

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