ethantqiu commited on
Commit
b79dcc8
·
verified ·
1 Parent(s): db111cf

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +158 -0
README.md ADDED
@@ -0,0 +1,158 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
15
+ <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=ethantqiu/test_hand_data">
16
+ <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
17
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl-dark.svg"/>
18
+ </a>
19
+
20
+
21
+ ## Dataset Description
22
+
23
+
24
+
25
+ - **Homepage:** [More Information Needed]
26
+ - **Paper:** [More Information Needed]
27
+ - **License:** apache-2.0
28
+
29
+ ## Dataset Structure
30
+
31
+ [meta/info.json](meta/info.json):
32
+ ```json
33
+ {
34
+ "codebase_version": "v3.0",
35
+ "robot_type": null,
36
+ "total_episodes": 0,
37
+ "total_frames": 0,
38
+ "total_tasks": 0,
39
+ "chunks_size": 1000,
40
+ "data_files_size_in_mb": 100,
41
+ "video_files_size_in_mb": 200,
42
+ "fps": 30,
43
+ "splits": {},
44
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
45
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
46
+ "features": {
47
+ "observation.state.right": {
48
+ "dtype": "float32",
49
+ "shape": [
50
+ 6
51
+ ],
52
+ "names": [
53
+ "j_0",
54
+ "j_1",
55
+ "j_2",
56
+ "j_3",
57
+ "j_4",
58
+ "j_5"
59
+ ]
60
+ },
61
+ "action.right": {
62
+ "dtype": "float32",
63
+ "shape": [
64
+ 6
65
+ ],
66
+ "names": [
67
+ "c_0",
68
+ "c_1",
69
+ "c_2",
70
+ "c_3",
71
+ "c_4",
72
+ "c_5"
73
+ ]
74
+ },
75
+ "observation.touch.right": {
76
+ "dtype": "float32",
77
+ "shape": [
78
+ 30
79
+ ],
80
+ "names": null
81
+ },
82
+ "observation.optitrack.umi_right": {
83
+ "dtype": "float32",
84
+ "shape": [
85
+ 7
86
+ ],
87
+ "names": [
88
+ "x",
89
+ "y",
90
+ "z",
91
+ "qw",
92
+ "qx",
93
+ "qy",
94
+ "qz"
95
+ ]
96
+ },
97
+ "observation.camera_pose.umi_right": {
98
+ "dtype": "float32",
99
+ "shape": [
100
+ 7
101
+ ],
102
+ "names": [
103
+ "x",
104
+ "y",
105
+ "z",
106
+ "qw",
107
+ "qx",
108
+ "qy",
109
+ "qz"
110
+ ]
111
+ },
112
+ "timestamp": {
113
+ "dtype": "float32",
114
+ "shape": [
115
+ 1
116
+ ],
117
+ "names": null
118
+ },
119
+ "frame_index": {
120
+ "dtype": "int64",
121
+ "shape": [
122
+ 1
123
+ ],
124
+ "names": null
125
+ },
126
+ "episode_index": {
127
+ "dtype": "int64",
128
+ "shape": [
129
+ 1
130
+ ],
131
+ "names": null
132
+ },
133
+ "index": {
134
+ "dtype": "int64",
135
+ "shape": [
136
+ 1
137
+ ],
138
+ "names": null
139
+ },
140
+ "task_index": {
141
+ "dtype": "int64",
142
+ "shape": [
143
+ 1
144
+ ],
145
+ "names": null
146
+ }
147
+ }
148
+ }
149
+ ```
150
+
151
+
152
+ ## Citation
153
+
154
+ **BibTeX:**
155
+
156
+ ```bibtex
157
+ [More Information Needed]
158
+ ```