jiroh2000 commited on
Commit
7e532e7
·
verified ·
1 Parent(s): 24cf605

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +123 -0
README.md ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - tutorial
8
+ configs:
9
+ - config_name: default
10
+ data_files: data/*/*.parquet
11
+ ---
12
+
13
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
14
+
15
+ ## Dataset Description
16
+
17
+
18
+
19
+ - **Homepage:** [More Information Needed]
20
+ - **Paper:** [More Information Needed]
21
+ - **License:** apache-2.0
22
+
23
+ ## Dataset Structure
24
+
25
+ [meta/info.json](meta/info.json):
26
+ ```json
27
+ {
28
+ "codebase_version": "v2.1",
29
+ "robot_type": "lekiwi",
30
+ "total_episodes": 2,
31
+ "total_frames": 592,
32
+ "total_tasks": 1,
33
+ "total_videos": 0,
34
+ "total_chunks": 1,
35
+ "chunks_size": 1000,
36
+ "fps": 30,
37
+ "splits": {
38
+ "train": "0:2"
39
+ },
40
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
41
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
42
+ "features": {
43
+ "action": {
44
+ "dtype": "float32",
45
+ "shape": [
46
+ 9
47
+ ],
48
+ "names": [
49
+ "shoulder_pan",
50
+ "shoulder_lift",
51
+ "elbow_flex",
52
+ "wrist_flex",
53
+ "wrist_roll",
54
+ "gripper",
55
+ "x_mm",
56
+ "y_mm",
57
+ "theta"
58
+ ]
59
+ },
60
+ "observation.state": {
61
+ "dtype": "float32",
62
+ "shape": [
63
+ 9
64
+ ],
65
+ "names": [
66
+ "shoulder_pan",
67
+ "shoulder_lift",
68
+ "elbow_flex",
69
+ "wrist_flex",
70
+ "wrist_roll",
71
+ "gripper",
72
+ "x_mm",
73
+ "y_mm",
74
+ "theta"
75
+ ]
76
+ },
77
+ "timestamp": {
78
+ "dtype": "float32",
79
+ "shape": [
80
+ 1
81
+ ],
82
+ "names": null
83
+ },
84
+ "frame_index": {
85
+ "dtype": "int64",
86
+ "shape": [
87
+ 1
88
+ ],
89
+ "names": null
90
+ },
91
+ "episode_index": {
92
+ "dtype": "int64",
93
+ "shape": [
94
+ 1
95
+ ],
96
+ "names": null
97
+ },
98
+ "index": {
99
+ "dtype": "int64",
100
+ "shape": [
101
+ 1
102
+ ],
103
+ "names": null
104
+ },
105
+ "task_index": {
106
+ "dtype": "int64",
107
+ "shape": [
108
+ 1
109
+ ],
110
+ "names": null
111
+ }
112
+ }
113
+ }
114
+ ```
115
+
116
+
117
+ ## Citation
118
+
119
+ **BibTeX:**
120
+
121
+ ```bibtex
122
+ [More Information Needed]
123
+ ```