GAOTHU commited on
Commit
6582ec0
·
verified ·
1 Parent(s): 55faa79

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +133 -0
README.md ADDED
@@ -0,0 +1,133 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - custom
8
+ - UR5
9
+ - hdf5
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
+ ## Dataset Description
18
+
19
+
20
+
21
+ - **Homepage:** [More Information Needed]
22
+ - **Paper:** [More Information Needed]
23
+ - **License:** apache-2.0
24
+
25
+ ## Dataset Structure
26
+
27
+ [meta/info.json](meta/info.json):
28
+ ```json
29
+ {
30
+ "codebase_version": "v2.1",
31
+ "robot_type": "UR5",
32
+ "total_episodes": 0,
33
+ "total_frames": 0,
34
+ "total_tasks": 0,
35
+ "total_videos": 0,
36
+ "total_chunks": 0,
37
+ "chunks_size": 1000,
38
+ "fps": 30,
39
+ "splits": {},
40
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
41
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
42
+ "features": {
43
+ "image": {
44
+ "dtype": "image",
45
+ "shape": [
46
+ 256,
47
+ 256,
48
+ 3
49
+ ],
50
+ "names": [
51
+ "height",
52
+ "width",
53
+ "channel"
54
+ ]
55
+ },
56
+ "wrist_image": {
57
+ "dtype": "image",
58
+ "shape": [
59
+ 256,
60
+ 256,
61
+ 3
62
+ ],
63
+ "names": [
64
+ "height",
65
+ "width",
66
+ "channel"
67
+ ]
68
+ },
69
+ "state": {
70
+ "dtype": "float32",
71
+ "shape": [
72
+ 7
73
+ ],
74
+ "names": [
75
+ "state"
76
+ ]
77
+ },
78
+ "actions": {
79
+ "dtype": "float32",
80
+ "shape": [
81
+ 7
82
+ ],
83
+ "names": [
84
+ "actions"
85
+ ]
86
+ },
87
+ "timestamp": {
88
+ "dtype": "float32",
89
+ "shape": [
90
+ 1
91
+ ],
92
+ "names": null
93
+ },
94
+ "frame_index": {
95
+ "dtype": "int64",
96
+ "shape": [
97
+ 1
98
+ ],
99
+ "names": null
100
+ },
101
+ "episode_index": {
102
+ "dtype": "int64",
103
+ "shape": [
104
+ 1
105
+ ],
106
+ "names": null
107
+ },
108
+ "index": {
109
+ "dtype": "int64",
110
+ "shape": [
111
+ 1
112
+ ],
113
+ "names": null
114
+ },
115
+ "task_index": {
116
+ "dtype": "int64",
117
+ "shape": [
118
+ 1
119
+ ],
120
+ "names": null
121
+ }
122
+ }
123
+ }
124
+ ```
125
+
126
+
127
+ ## Citation
128
+
129
+ **BibTeX:**
130
+
131
+ ```bibtex
132
+ [More Information Needed]
133
+ ```