Datasets:

Modalities:
Text
Formats:
webdataset
ArXiv:
Libraries:
Datasets
WebDataset
License:
thomasschmied commited on
Commit
5b17d24
·
verified ·
1 Parent(s): 3c7d5dc

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -0
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
+ ```