Pierre Bastola commited on
Commit
a38d73d
·
verified ·
1 Parent(s): 74ffc3c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +130 -0
README.md ADDED
@@ -0,0 +1,130 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "yam_follower_dual",
29
+ "total_episodes": 0,
30
+ "total_frames": 0,
31
+ "total_tasks": 0,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 200,
35
+ "fps": 30,
36
+ "splits": {},
37
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
38
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
39
+ "features": {
40
+ "action": {
41
+ "dtype": "float32",
42
+ "names": [
43
+ "motor_0.pos",
44
+ "motor_1.pos",
45
+ "motor_2.pos",
46
+ "motor_3.pos",
47
+ "motor_4.pos",
48
+ "motor_5.pos",
49
+ "motor_6.pos",
50
+ "motor_7.pos",
51
+ "motor_8.pos",
52
+ "motor_9.pos",
53
+ "motor_10.pos",
54
+ "motor_11.pos",
55
+ "motor_12.pos",
56
+ "motor_13.pos"
57
+ ],
58
+ "shape": [
59
+ 14
60
+ ]
61
+ },
62
+ "observation.state": {
63
+ "dtype": "float32",
64
+ "names": [
65
+ "motor_0.pos",
66
+ "motor_1.pos",
67
+ "motor_2.pos",
68
+ "motor_3.pos",
69
+ "motor_4.pos",
70
+ "motor_5.pos",
71
+ "motor_6.pos",
72
+ "motor_7.pos",
73
+ "motor_8.pos",
74
+ "motor_9.pos",
75
+ "motor_10.pos",
76
+ "motor_11.pos",
77
+ "motor_12.pos",
78
+ "motor_13.pos"
79
+ ],
80
+ "shape": [
81
+ 14
82
+ ]
83
+ },
84
+ "timestamp": {
85
+ "dtype": "float32",
86
+ "shape": [
87
+ 1
88
+ ],
89
+ "names": null
90
+ },
91
+ "frame_index": {
92
+ "dtype": "int64",
93
+ "shape": [
94
+ 1
95
+ ],
96
+ "names": null
97
+ },
98
+ "episode_index": {
99
+ "dtype": "int64",
100
+ "shape": [
101
+ 1
102
+ ],
103
+ "names": null
104
+ },
105
+ "index": {
106
+ "dtype": "int64",
107
+ "shape": [
108
+ 1
109
+ ],
110
+ "names": null
111
+ },
112
+ "task_index": {
113
+ "dtype": "int64",
114
+ "shape": [
115
+ 1
116
+ ],
117
+ "names": null
118
+ }
119
+ }
120
+ }
121
+ ```
122
+
123
+
124
+ ## Citation
125
+
126
+ **BibTeX:**
127
+
128
+ ```bibtex
129
+ [More Information Needed]
130
+ ```