aliberts commited on
Commit
70de4cd
·
verified ·
1 Parent(s): 29e208d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +146 -54
README.md CHANGED
@@ -1,16 +1,30 @@
1
  ---
 
2
  task_categories:
3
  - robotics
4
  tags:
5
  - LeRobot
 
 
 
6
  ---
 
7
  This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
8
 
9
- [meta/info.json](meta/info.json)
 
 
 
 
 
 
 
 
 
 
10
  ```json
11
  {
12
  "codebase_version": "v2.0",
13
- "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
14
  "robot_type": "unknown",
15
  "total_episodes": 107,
16
  "total_frames": 7622,
@@ -22,60 +36,138 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
22
  "splits": {
23
  "train": "0:107"
24
  },
25
- "keys": [
26
- "observation.state",
27
- "action"
28
- ],
29
- "video_keys": [
30
- "observation.images.image"
31
- ],
32
- "image_keys": [],
33
- "shapes": {
34
- "observation.state": 12,
35
- "action": 7,
36
- "observation.images.image": {
37
- "width": 640,
38
- "height": 480,
39
- "channels": 3
40
- }
41
- },
42
- "names": {
43
- "observation.state": [
44
- "motor_0",
45
- "motor_1",
46
- "motor_2",
47
- "motor_3",
48
- "motor_4",
49
- "motor_5",
50
- "motor_6",
51
- "motor_7",
52
- "motor_8",
53
- "motor_9",
54
- "motor_10",
55
- "motor_11"
56
- ],
57
- "action": [
58
- "motor_0",
59
- "motor_1",
60
- "motor_2",
61
- "motor_3",
62
- "motor_4",
63
- "motor_5",
64
- "motor_6"
65
- ]
66
- },
67
- "videos": {
68
- "videos_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
69
  "observation.images.image": {
70
- "video.fps": 5.0,
71
- "video.width": 640,
72
- "video.height": 480,
73
- "video.channels": 3,
74
- "video.codec": "av1",
75
- "video.pix_fmt": "yuv420p",
76
- "video.is_depth_map": false,
77
- "has_audio": false
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
  }
79
  }
80
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
  ```
 
1
  ---
2
+ license: mit
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:** https://www.researchsquare.com/article/rs-3289569/v1
20
+ - **License:** mit
21
+
22
+ ## Dataset Structure
23
+
24
+ [meta/info.json](meta/info.json):
25
  ```json
26
  {
27
  "codebase_version": "v2.0",
 
28
  "robot_type": "unknown",
29
  "total_episodes": 107,
30
  "total_frames": 7622,
 
36
  "splits": {
37
  "train": "0:107"
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.images.image": {
43
+ "dtype": "video",
44
+ "shape": [
45
+ 480,
46
+ 640,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channel"
53
+ ],
54
+ "video_info": {
55
+ "video.fps": 5.0,
56
+ "video.codec": "av1",
57
+ "video.pix_fmt": "yuv420p",
58
+ "video.is_depth_map": false,
59
+ "has_audio": false
60
+ }
61
+ },
62
+ "language_instruction": {
63
+ "dtype": "string",
64
+ "shape": [
65
+ 1
66
+ ],
67
+ "names": null
68
+ },
69
+ "observation.state": {
70
+ "dtype": "float32",
71
+ "shape": [
72
+ 12
73
+ ],
74
+ "names": {
75
+ "motors": [
76
+ "motor_0",
77
+ "motor_1",
78
+ "motor_2",
79
+ "motor_3",
80
+ "motor_4",
81
+ "motor_5",
82
+ "motor_6",
83
+ "motor_7",
84
+ "motor_8",
85
+ "motor_9",
86
+ "motor_10",
87
+ "motor_11"
88
+ ]
89
+ }
90
+ },
91
+ "action": {
92
+ "dtype": "float32",
93
+ "shape": [
94
+ 7
95
+ ],
96
+ "names": {
97
+ "motors": [
98
+ "motor_0",
99
+ "motor_1",
100
+ "motor_2",
101
+ "motor_3",
102
+ "motor_4",
103
+ "motor_5",
104
+ "motor_6"
105
+ ]
106
+ }
107
+ },
108
+ "timestamp": {
109
+ "dtype": "float32",
110
+ "shape": [
111
+ 1
112
+ ],
113
+ "names": null
114
+ },
115
+ "episode_index": {
116
+ "dtype": "int64",
117
+ "shape": [
118
+ 1
119
+ ],
120
+ "names": null
121
+ },
122
+ "frame_index": {
123
+ "dtype": "int64",
124
+ "shape": [
125
+ 1
126
+ ],
127
+ "names": null
128
+ },
129
+ "next.reward": {
130
+ "dtype": "float32",
131
+ "shape": [
132
+ 1
133
+ ],
134
+ "names": null
135
+ },
136
+ "next.done": {
137
+ "dtype": "bool",
138
+ "shape": [
139
+ 1
140
+ ],
141
+ "names": null
142
+ },
143
+ "index": {
144
+ "dtype": "int64",
145
+ "shape": [
146
+ 1
147
+ ],
148
+ "names": null
149
+ },
150
+ "task_index": {
151
+ "dtype": "int64",
152
+ "shape": [
153
+ 1
154
+ ],
155
+ "names": null
156
  }
157
  }
158
  }
159
+ ```
160
+
161
+
162
+ ## Citation
163
+
164
+ **BibTeX:**
165
+
166
+ ```bibtex
167
+ @article{padalkar2023guided,
168
+ title={A guided reinforcement learning approach using shared control templates for learning manipulation skills in the real world},
169
+ author={Padalkar, Abhishek and Quere, Gabriel and Raffin, Antonin and Silv{\'e}rio, Jo{\~a}o and Stulp, Freek},
170
+ journal={Research square preprint rs-3289569/v1},
171
+ year={2023}
172
+ }
173
  ```