Datasets:

Formats:
parquet
ArXiv:
Libraries:
Datasets
Dask
License:
aliberts HF staff commited on
Commit
ce2d213
1 Parent(s): f2bccb6

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +130 -43
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": 800,
16
  "total_frames": 20000,
@@ -22,49 +36,122 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
22
  "splits": {
23
  "train": "0:800"
24
  },
25
- "keys": [
26
- "observation.state",
27
- "action"
28
- ],
29
- "video_keys": [
30
- "observation.image"
31
- ],
32
- "image_keys": [],
33
- "shapes": {
34
- "observation.state": 4,
35
- "action": 4,
36
- "observation.image": {
37
- "width": 84,
38
- "height": 84,
39
- "channels": 3
40
- }
41
- },
42
- "names": {
43
- "observation.state": [
44
- "motor_0",
45
- "motor_1",
46
- "motor_2",
47
- "motor_3"
48
- ],
49
- "action": [
50
- "motor_0",
51
- "motor_1",
52
- "motor_2",
53
- "motor_3"
54
- ]
55
- },
56
- "videos": {
57
- "videos_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
58
  "observation.image": {
59
- "video.fps": 15.0,
60
- "video.width": 84,
61
- "video.height": 84,
62
- "video.channels": 3,
63
- "video.codec": "av1",
64
- "video.pix_fmt": "yuv420p",
65
- "video.is_depth_map": false,
66
- "has_audio": false
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  }
68
  }
69
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  ```
 
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:** https://www.nicklashansen.com/td-mpc/
19
+ - **Paper:** https://arxiv.org/abs/2203.04955
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": 800,
30
  "total_frames": 20000,
 
36
  "splits": {
37
  "train": "0:800"
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.image": {
43
+ "dtype": "video",
44
+ "shape": [
45
+ 84,
46
+ 84,
47
+ 3
48
+ ],
49
+ "names": [
50
+ "height",
51
+ "width",
52
+ "channel"
53
+ ],
54
+ "video_info": {
55
+ "video.fps": 15.0,
56
+ "video.codec": "av1",
57
+ "video.pix_fmt": "yuv420p",
58
+ "video.is_depth_map": false,
59
+ "has_audio": false
60
+ }
61
+ },
62
+ "observation.state": {
63
+ "dtype": "float32",
64
+ "shape": [
65
+ 4
66
+ ],
67
+ "names": {
68
+ "motors": [
69
+ "motor_0",
70
+ "motor_1",
71
+ "motor_2",
72
+ "motor_3"
73
+ ]
74
+ }
75
+ },
76
+ "action": {
77
+ "dtype": "float32",
78
+ "shape": [
79
+ 4
80
+ ],
81
+ "names": {
82
+ "motors": [
83
+ "motor_0",
84
+ "motor_1",
85
+ "motor_2",
86
+ "motor_3"
87
+ ]
88
+ }
89
+ },
90
+ "episode_index": {
91
+ "dtype": "int64",
92
+ "shape": [
93
+ 1
94
+ ],
95
+ "names": null
96
+ },
97
+ "frame_index": {
98
+ "dtype": "int64",
99
+ "shape": [
100
+ 1
101
+ ],
102
+ "names": null
103
+ },
104
+ "timestamp": {
105
+ "dtype": "float32",
106
+ "shape": [
107
+ 1
108
+ ],
109
+ "names": null
110
+ },
111
+ "next.reward": {
112
+ "dtype": "float32",
113
+ "shape": [
114
+ 1
115
+ ],
116
+ "names": null
117
+ },
118
+ "next.done": {
119
+ "dtype": "bool",
120
+ "shape": [
121
+ 1
122
+ ],
123
+ "names": null
124
+ },
125
+ "index": {
126
+ "dtype": "int64",
127
+ "shape": [
128
+ 1
129
+ ],
130
+ "names": null
131
+ },
132
+ "task_index": {
133
+ "dtype": "int64",
134
+ "shape": [
135
+ 1
136
+ ],
137
+ "names": null
138
  }
139
  }
140
  }
141
+ ```
142
+
143
+
144
+ ## Citation
145
+
146
+ **BibTeX:**
147
+
148
+ ```bibtex
149
+
150
+ @inproceedings{Hansen2022tdmpc,
151
+ title={Temporal Difference Learning for Model Predictive Control},
152
+ author={Nicklas Hansen and Xiaolong Wang and Hao Su},
153
+ booktitle={ICML},
154
+ year={2022}
155
+ }
156
+
157
  ```