paszea commited on
Commit
dfe9c0a
·
verified ·
1 Parent(s): dd84214

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
+ - lekiwi
8
+ - game
9
+ configs:
10
+ - config_name: default
11
+ data_files: data/*/*.parquet
12
+ ---
13
+
14
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
15
+
16
+ ## Dataset Description
17
+
18
+
19
+
20
+ - **Homepage:** [More Information Needed]
21
+ - **Paper:** [More Information Needed]
22
+ - **License:** apache-2.0
23
+
24
+ ## Dataset Structure
25
+
26
+ [meta/info.json](meta/info.json):
27
+ ```json
28
+ {
29
+ "codebase_version": "v2.1",
30
+ "robot_type": "lekiwi",
31
+ "total_episodes": 3,
32
+ "total_frames": 8587,
33
+ "total_tasks": 1,
34
+ "total_videos": 0,
35
+ "total_chunks": 1,
36
+ "chunks_size": 1000,
37
+ "fps": 30,
38
+ "splits": {
39
+ "train": "0:3"
40
+ },
41
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
42
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
43
+ "features": {
44
+ "action": {
45
+ "dtype": "float32",
46
+ "shape": [
47
+ 6
48
+ ],
49
+ "names": [
50
+ "shoulder_pan",
51
+ "shoulder_lift",
52
+ "elbow_flex",
53
+ "wrist_flex",
54
+ "wrist_roll",
55
+ "gripper"
56
+ ]
57
+ },
58
+ "observation.state": {
59
+ "dtype": "float32",
60
+ "shape": [
61
+ 6
62
+ ],
63
+ "names": [
64
+ "shoulder_pan",
65
+ "shoulder_lift",
66
+ "elbow_flex",
67
+ "wrist_flex",
68
+ "wrist_roll",
69
+ "gripper"
70
+ ]
71
+ },
72
+ "observation.environment_state": {
73
+ "dtype": "float32",
74
+ "shape": [
75
+ 4
76
+ ],
77
+ "name": [
78
+ "y0",
79
+ "x0",
80
+ "y1",
81
+ "x1"
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
+ ```