cagedBirdy commited on
Commit
de1d1ce
·
verified ·
1 Parent(s): b5c93e4

Upload README.md with huggingface_hub

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