edipark commited on
Commit
9ff3d0e
·
verified ·
1 Parent(s): 56ae925

Upload README.md with huggingface_hub

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