jinukoo commited on
Commit
7e264ed
·
verified ·
1 Parent(s): 0632f55

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +159 -0
README.md ADDED
@@ -0,0 +1,159 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - towel_folding
8
+ - real
9
+ - ur5
10
+ - lerobot
11
+ - split:train
12
+ configs:
13
+ - config_name: default
14
+ data_files: data/*/*.parquet
15
+ ---
16
+
17
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
18
+
19
+ ## Dataset Description
20
+
21
+
22
+
23
+ - **Homepage:** [More Information Needed]
24
+ - **Paper:** [More Information Needed]
25
+ - **License:** apache-2.0
26
+
27
+ ## Dataset Structure
28
+
29
+ [meta/info.json](meta/info.json):
30
+ ```json
31
+ {
32
+ "codebase_version": "v2.1",
33
+ "robot_type": "ur5",
34
+ "total_episodes": 59,
35
+ "total_frames": 10663,
36
+ "total_tasks": 1,
37
+ "total_videos": 0,
38
+ "total_chunks": 1,
39
+ "chunks_size": 1000,
40
+ "fps": 10,
41
+ "splits": {
42
+ "train": "0:59"
43
+ },
44
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
45
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
46
+ "features": {
47
+ "camera_0": {
48
+ "dtype": "image",
49
+ "shape": [
50
+ 240,
51
+ 320,
52
+ 3
53
+ ],
54
+ "names": [
55
+ "height",
56
+ "width",
57
+ "channel"
58
+ ]
59
+ },
60
+ "camera_1": {
61
+ "dtype": "image",
62
+ "shape": [
63
+ 240,
64
+ 320,
65
+ 3
66
+ ],
67
+ "names": [
68
+ "height",
69
+ "width",
70
+ "channel"
71
+ ]
72
+ },
73
+ "camera_2": {
74
+ "dtype": "image",
75
+ "shape": [
76
+ 240,
77
+ 320,
78
+ 3
79
+ ],
80
+ "names": [
81
+ "height",
82
+ "width",
83
+ "channel"
84
+ ]
85
+ },
86
+ "robot_eef_pose": {
87
+ "dtype": "float32",
88
+ "shape": [
89
+ 6
90
+ ],
91
+ "names": [
92
+ "pose"
93
+ ]
94
+ },
95
+ "gripper_state": {
96
+ "dtype": "float32",
97
+ "shape": [
98
+ 1
99
+ ],
100
+ "names": [
101
+ "gripper"
102
+ ]
103
+ },
104
+ "actions": {
105
+ "dtype": "float32",
106
+ "shape": [
107
+ 7
108
+ ],
109
+ "names": [
110
+ "actions"
111
+ ]
112
+ },
113
+ "timestamp": {
114
+ "dtype": "float32",
115
+ "shape": [
116
+ 1
117
+ ],
118
+ "names": null
119
+ },
120
+ "frame_index": {
121
+ "dtype": "int64",
122
+ "shape": [
123
+ 1
124
+ ],
125
+ "names": null
126
+ },
127
+ "episode_index": {
128
+ "dtype": "int64",
129
+ "shape": [
130
+ 1
131
+ ],
132
+ "names": null
133
+ },
134
+ "index": {
135
+ "dtype": "int64",
136
+ "shape": [
137
+ 1
138
+ ],
139
+ "names": null
140
+ },
141
+ "task_index": {
142
+ "dtype": "int64",
143
+ "shape": [
144
+ 1
145
+ ],
146
+ "names": null
147
+ }
148
+ }
149
+ }
150
+ ```
151
+
152
+
153
+ ## Citation
154
+
155
+ **BibTeX:**
156
+
157
+ ```bibtex
158
+ [More Information Needed]
159
+ ```