iantc104 commited on
Commit
1aeab48
·
verified ·
1 Parent(s): 6925043

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +153 -0
README.md ADDED
@@ -0,0 +1,153 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - ur5
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": "v2.1",
29
+ "robot_type": "ur5",
30
+ "total_episodes": 1,
31
+ "total_frames": 32,
32
+ "total_tasks": 1,
33
+ "total_videos": 2,
34
+ "total_chunks": 1,
35
+ "chunks_size": 1000,
36
+ "fps": 10,
37
+ "splits": {
38
+ "train": "0:1"
39
+ },
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
+ "observation.images.scene": {
44
+ "dtype": "video",
45
+ "shape": [
46
+ 240,
47
+ 320,
48
+ 3
49
+ ],
50
+ "names": [
51
+ "height",
52
+ "width",
53
+ "channel"
54
+ ],
55
+ "info": {
56
+ "video.fps": 10.0,
57
+ "video.height": 240,
58
+ "video.width": 320,
59
+ "video.channels": 3,
60
+ "video.codec": "av1",
61
+ "video.pix_fmt": "yuv420p",
62
+ "video.is_depth_map": false,
63
+ "has_audio": false
64
+ }
65
+ },
66
+ "observation.images.wrist": {
67
+ "dtype": "video",
68
+ "shape": [
69
+ 240,
70
+ 320,
71
+ 3
72
+ ],
73
+ "names": [
74
+ "height",
75
+ "width",
76
+ "channel"
77
+ ],
78
+ "info": {
79
+ "video.fps": 10.0,
80
+ "video.height": 240,
81
+ "video.width": 320,
82
+ "video.channels": 3,
83
+ "video.codec": "av1",
84
+ "video.pix_fmt": "yuv420p",
85
+ "video.is_depth_map": false,
86
+ "has_audio": false
87
+ }
88
+ },
89
+ "observation.state": {
90
+ "dtype": "float32",
91
+ "shape": [
92
+ 7
93
+ ],
94
+ "names": [
95
+ "state"
96
+ ]
97
+ },
98
+ "action": {
99
+ "dtype": "float32",
100
+ "shape": [
101
+ 7
102
+ ],
103
+ "names": [
104
+ "action"
105
+ ]
106
+ },
107
+ "timestamp": {
108
+ "dtype": "float32",
109
+ "shape": [
110
+ 1
111
+ ],
112
+ "names": null
113
+ },
114
+ "frame_index": {
115
+ "dtype": "int64",
116
+ "shape": [
117
+ 1
118
+ ],
119
+ "names": null
120
+ },
121
+ "episode_index": {
122
+ "dtype": "int64",
123
+ "shape": [
124
+ 1
125
+ ],
126
+ "names": null
127
+ },
128
+ "index": {
129
+ "dtype": "int64",
130
+ "shape": [
131
+ 1
132
+ ],
133
+ "names": null
134
+ },
135
+ "task_index": {
136
+ "dtype": "int64",
137
+ "shape": [
138
+ 1
139
+ ],
140
+ "names": null
141
+ }
142
+ }
143
+ }
144
+ ```
145
+
146
+
147
+ ## Citation
148
+
149
+ **BibTeX:**
150
+
151
+ ```bibtex
152
+ [More Information Needed]
153
+ ```