TreeePlanter commited on
Commit
32f5db4
·
verified ·
1 Parent(s): 61f759d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +149 -0
README.md ADDED
@@ -0,0 +1,149 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - rainbow
8
+ - simulation
9
+ - robot
10
+ - lerobot
11
+ configs:
12
+ - config_name: default
13
+ data_files: data/*/*.parquet
14
+ ---
15
+
16
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
17
+
18
+ ## Dataset Description
19
+
20
+
21
+
22
+ - **Homepage:** [More Information Needed]
23
+ - **Paper:** [More Information Needed]
24
+ - **License:** apache-2.0
25
+
26
+ ## Dataset Structure
27
+
28
+ [meta/info.json](meta/info.json):
29
+ ```json
30
+ {
31
+ "codebase_version": "v2.1",
32
+ "robot_type": "rby1",
33
+ "total_episodes": 1000,
34
+ "total_frames": 151519,
35
+ "total_tasks": 1,
36
+ "total_videos": 0,
37
+ "total_chunks": 1,
38
+ "chunks_size": 1000,
39
+ "fps": 50,
40
+ "splits": {
41
+ "train": "0:1000"
42
+ },
43
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
44
+ "video_path": null,
45
+ "features": {
46
+ "observation.state": {
47
+ "dtype": "float32",
48
+ "shape": [
49
+ 24
50
+ ],
51
+ "names": [
52
+ "state"
53
+ ]
54
+ },
55
+ "observation.images.third_view_camera": {
56
+ "dtype": "image",
57
+ "shape": [
58
+ 3,
59
+ 256,
60
+ 256
61
+ ],
62
+ "names": [
63
+ "channels",
64
+ "height",
65
+ "width"
66
+ ]
67
+ },
68
+ "observation.images.wrist_l_camera": {
69
+ "dtype": "image",
70
+ "shape": [
71
+ 3,
72
+ 256,
73
+ 256
74
+ ],
75
+ "names": [
76
+ "channels",
77
+ "height",
78
+ "width"
79
+ ]
80
+ },
81
+ "observation.images.wrist_r_camera": {
82
+ "dtype": "image",
83
+ "shape": [
84
+ 3,
85
+ 256,
86
+ 256
87
+ ],
88
+ "names": [
89
+ "channels",
90
+ "height",
91
+ "width"
92
+ ]
93
+ },
94
+ "action": {
95
+ "dtype": "float32",
96
+ "shape": [
97
+ 22
98
+ ],
99
+ "names": [
100
+ "action"
101
+ ]
102
+ },
103
+ "timestamp": {
104
+ "dtype": "float32",
105
+ "shape": [
106
+ 1
107
+ ],
108
+ "names": null
109
+ },
110
+ "frame_index": {
111
+ "dtype": "int64",
112
+ "shape": [
113
+ 1
114
+ ],
115
+ "names": null
116
+ },
117
+ "episode_index": {
118
+ "dtype": "int64",
119
+ "shape": [
120
+ 1
121
+ ],
122
+ "names": null
123
+ },
124
+ "index": {
125
+ "dtype": "int64",
126
+ "shape": [
127
+ 1
128
+ ],
129
+ "names": null
130
+ },
131
+ "task_index": {
132
+ "dtype": "int64",
133
+ "shape": [
134
+ 1
135
+ ],
136
+ "names": null
137
+ }
138
+ }
139
+ }
140
+ ```
141
+
142
+
143
+ ## Citation
144
+
145
+ **BibTeX:**
146
+
147
+ ```bibtex
148
+ [More Information Needed]
149
+ ```