Loki0929 commited on
Commit
03de5dd
·
verified ·
1 Parent(s): d5f5c8d

Upload README.md with huggingface_hub

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