gbtxlqr commited on
Commit
fb9dac8
·
verified ·
1 Parent(s): b52bd88

Upload README.md with huggingface_hub

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