Datasets:
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
task_categories:
|
4 |
+
- reinforcement-learning
|
5 |
+
---
|
6 |
+
This repository contains the [Meta-World](https://arxiv.org/abs/1910.10897) datasets as used in [Learning to Modulate Pre-trained Models in RL](https://arxiv.org/abs/2306.14884):
|
7 |
+
- Trajectories for every task are stored as separate `.npz` files.
|
8 |
+
- Every `.npz` file contains 2M transitions.
|
9 |
+
|
10 |
+
Download the dataset using the `huggingface-cli`:
|
11 |
+
```
|
12 |
+
huggingface-cli download ml-jku/meta-world --local-dir=./meta-world --repo-type dataset
|
13 |
+
```
|
14 |
+
For dataloading we refer to our Github repository: https://github.com/ml-jku/L2M
|
15 |
+
|
16 |
+
Citation:
|
17 |
+
```
|
18 |
+
@article{schmied2024learning,
|
19 |
+
title={Learning to Modulate pre-trained Models in RL},
|
20 |
+
author={Schmied, Thomas and Hofmarcher, Markus and Paischer, Fabian and Pascanu, Razvan and Hochreiter, Sepp},
|
21 |
+
journal={Advances in Neural Information Processing Systems},
|
22 |
+
volume={36},
|
23 |
+
year={2024}
|
24 |
+
}
|
25 |
+
```
|