eyefly2 commited on
Commit
fc4989f
·
verified ·
1 Parent(s): 0b3cea1

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +145 -0
README.md ADDED
@@ -0,0 +1,145 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "v2.1",
28
+ "robot_type": null,
29
+ "total_episodes": 0,
30
+ "total_frames": 0,
31
+ "total_tasks": 0,
32
+ "total_videos": 0,
33
+ "total_chunks": 0,
34
+ "chunks_size": 1000,
35
+ "fps": 10,
36
+ "splits": {},
37
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
38
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
39
+ "features": {
40
+ "observation.state.pose": {
41
+ "dtype": "float32",
42
+ "shape": [
43
+ 6
44
+ ],
45
+ "names": [
46
+ "x",
47
+ "y",
48
+ "z",
49
+ "roll",
50
+ "pitch",
51
+ "yaw"
52
+ ]
53
+ },
54
+ "action.pose": {
55
+ "dtype": "float32",
56
+ "shape": [
57
+ 6
58
+ ],
59
+ "names": [
60
+ "x",
61
+ "y",
62
+ "z",
63
+ "roll",
64
+ "pitch",
65
+ "yaw"
66
+ ]
67
+ },
68
+ "action.gripper": {
69
+ "dtype": "float32",
70
+ "shape": [
71
+ 1
72
+ ],
73
+ "names": [
74
+ "gripper"
75
+ ]
76
+ },
77
+ "observation.images": {
78
+ "dtype": "video",
79
+ "shape": [
80
+ 3,
81
+ 224,
82
+ 224
83
+ ],
84
+ "names": [
85
+ "channels",
86
+ "height",
87
+ "width"
88
+ ],
89
+ "info": {
90
+ "video.channels": 3
91
+ }
92
+ },
93
+ "timestamps": {
94
+ "dtype": "float32",
95
+ "shape": [
96
+ 1
97
+ ]
98
+ },
99
+ "timestamp": {
100
+ "dtype": "float32",
101
+ "shape": [
102
+ 1
103
+ ],
104
+ "names": null
105
+ },
106
+ "frame_index": {
107
+ "dtype": "int64",
108
+ "shape": [
109
+ 1
110
+ ],
111
+ "names": null
112
+ },
113
+ "episode_index": {
114
+ "dtype": "int64",
115
+ "shape": [
116
+ 1
117
+ ],
118
+ "names": null
119
+ },
120
+ "index": {
121
+ "dtype": "int64",
122
+ "shape": [
123
+ 1
124
+ ],
125
+ "names": null
126
+ },
127
+ "task_index": {
128
+ "dtype": "int64",
129
+ "shape": [
130
+ 1
131
+ ],
132
+ "names": null
133
+ }
134
+ }
135
+ }
136
+ ```
137
+
138
+
139
+ ## Citation
140
+
141
+ **BibTeX:**
142
+
143
+ ```bibtex
144
+ [More Information Needed]
145
+ ```