kimz1121 commited on
Commit
e1c9e89
·
verified ·
1 Parent(s): 4dda84f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +174 -0
README.md ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 13,
30
+ "total_frames": 9382,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 200,
35
+ "fps": 10,
36
+ "splits": {
37
+ "train": "0:13"
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
+ "action": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 8
46
+ ],
47
+ "names": [
48
+ "j1",
49
+ "j2",
50
+ "j3",
51
+ "j4",
52
+ "j5",
53
+ "j6",
54
+ "j7",
55
+ "gripper"
56
+ ]
57
+ },
58
+ "observation.state": {
59
+ "dtype": "float32",
60
+ "shape": [
61
+ 15
62
+ ],
63
+ "names": [
64
+ "ee_x",
65
+ "ee_y",
66
+ "ee_z",
67
+ "ee_qx",
68
+ "ee_qy",
69
+ "ee_qz",
70
+ "ee_qw",
71
+ "j1",
72
+ "j2",
73
+ "j3",
74
+ "j4",
75
+ "j5",
76
+ "j6",
77
+ "j7",
78
+ "gripper"
79
+ ]
80
+ },
81
+ "observation.images.cam_0": {
82
+ "dtype": "video",
83
+ "shape": [
84
+ 256,
85
+ 256,
86
+ 3
87
+ ],
88
+ "names": [
89
+ "height",
90
+ "width",
91
+ "channels"
92
+ ],
93
+ "info": {
94
+ "video.height": 256,
95
+ "video.width": 256,
96
+ "video.codec": "av1",
97
+ "video.pix_fmt": "yuv420p",
98
+ "video.is_depth_map": false,
99
+ "video.fps": 10,
100
+ "video.channels": 3,
101
+ "has_audio": false
102
+ }
103
+ },
104
+ "observation.depth.cam_0": {
105
+ "dtype": "float32",
106
+ "shape": [
107
+ 256,
108
+ 256
109
+ ],
110
+ "names": "depth_image"
111
+ },
112
+ "observation.state.intrinsic": {
113
+ "dtype": "float32",
114
+ "shape": [
115
+ 3,
116
+ 3
117
+ ],
118
+ "names": "intrinsic_matrix"
119
+ },
120
+ "observation.state.extrinsic": {
121
+ "dtype": "float32",
122
+ "shape": [
123
+ 4,
124
+ 4
125
+ ],
126
+ "names": "extrinsic_matrix"
127
+ },
128
+ "timestamp": {
129
+ "dtype": "float32",
130
+ "shape": [
131
+ 1
132
+ ],
133
+ "names": null
134
+ },
135
+ "frame_index": {
136
+ "dtype": "int64",
137
+ "shape": [
138
+ 1
139
+ ],
140
+ "names": null
141
+ },
142
+ "episode_index": {
143
+ "dtype": "int64",
144
+ "shape": [
145
+ 1
146
+ ],
147
+ "names": null
148
+ },
149
+ "index": {
150
+ "dtype": "int64",
151
+ "shape": [
152
+ 1
153
+ ],
154
+ "names": null
155
+ },
156
+ "task_index": {
157
+ "dtype": "int64",
158
+ "shape": [
159
+ 1
160
+ ],
161
+ "names": null
162
+ }
163
+ }
164
+ }
165
+ ```
166
+
167
+
168
+ ## Citation
169
+
170
+ **BibTeX:**
171
+
172
+ ```bibtex
173
+ [More Information Needed]
174
+ ```