Loki0929 commited on
Commit
2a3a2d7
·
verified ·
1 Parent(s): 0770411

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.0",
28
+ "robot_type": "fastumi",
29
+ "total_episodes": 1,
30
+ "total_frames": 180,
31
+ "total_tasks": 1,
32
+ "total_videos": 0,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 50,
36
+ "splits": {
37
+ "train": "0:1"
38
+ },
39
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
40
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
41
+ "features": {
42
+ "observation.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 7
46
+ ],
47
+ "names": [
48
+ "joint_0",
49
+ "joint_1",
50
+ "joint_2",
51
+ "joint_3",
52
+ "joint_4",
53
+ "joint_5",
54
+ "joint_6"
55
+ ]
56
+ },
57
+ "action": {
58
+ "dtype": "float32",
59
+ "shape": [
60
+ 7
61
+ ],
62
+ "names": [
63
+ "joint_0",
64
+ "joint_1",
65
+ "joint_2",
66
+ "joint_3",
67
+ "joint_4",
68
+ "joint_5",
69
+ "joint_6"
70
+ ]
71
+ },
72
+ "observation.images.front": {
73
+ "dtype": "image",
74
+ "shape": [
75
+ 3,
76
+ 1080,
77
+ 1920
78
+ ],
79
+ "names": [
80
+ "channels",
81
+ "height",
82
+ "width"
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
+ ```