Amorargo commited on
Commit
7ea345b
·
verified ·
1 Parent(s): 0fd91b3

Upload README.md with huggingface_hub

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