Datasets:

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

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +129 -42
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,48 +36,121 @@ 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": 3,
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
- ]
54
- },
55
- "videos": {
56
- "videos_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
57
  "observation.image": {
58
- "video.fps": 15.0,
59
- "video.width": 84,
60
- "video.height": 84,
61
- "video.channels": 3,
62
- "video.codec": "av1",
63
- "video.pix_fmt": "yuv420p",
64
- "video.is_depth_map": false,
65
- "has_audio": false
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  }
67
  }
68
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  ```
 
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
+ 3
80
+ ],
81
+ "names": {
82
+ "motors": [
83
+ "motor_0",
84
+ "motor_1",
85
+ "motor_2"
86
+ ]
87
+ }
88
+ },
89
+ "episode_index": {
90
+ "dtype": "int64",
91
+ "shape": [
92
+ 1
93
+ ],
94
+ "names": null
95
+ },
96
+ "frame_index": {
97
+ "dtype": "int64",
98
+ "shape": [
99
+ 1
100
+ ],
101
+ "names": null
102
+ },
103
+ "timestamp": {
104
+ "dtype": "float32",
105
+ "shape": [
106
+ 1
107
+ ],
108
+ "names": null
109
+ },
110
+ "next.reward": {
111
+ "dtype": "float32",
112
+ "shape": [
113
+ 1
114
+ ],
115
+ "names": null
116
+ },
117
+ "next.done": {
118
+ "dtype": "bool",
119
+ "shape": [
120
+ 1
121
+ ],
122
+ "names": null
123
+ },
124
+ "index": {
125
+ "dtype": "int64",
126
+ "shape": [
127
+ 1
128
+ ],
129
+ "names": null
130
+ },
131
+ "task_index": {
132
+ "dtype": "int64",
133
+ "shape": [
134
+ 1
135
+ ],
136
+ "names": null
137
  }
138
  }
139
  }
140
+ ```
141
+
142
+
143
+ ## Citation
144
+
145
+ **BibTeX:**
146
+
147
+ ```bibtex
148
+
149
+ @inproceedings{Hansen2022tdmpc,
150
+ title={Temporal Difference Learning for Model Predictive Control},
151
+ author={Nicklas Hansen and Xiaolong Wang and Hao Su},
152
+ booktitle={ICML},
153
+ year={2022}
154
+ }
155
+
156
  ```