mihirma commited on
Commit
8d7d645
·
verified ·
1 Parent(s): 8e15cb5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -3
README.md CHANGED
@@ -1,3 +1,40 @@
1
- ---
2
- license: cc0-1.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ ---
4
+
5
+ # CoinRun Dataset
6
+
7
+ This is a large dataset of **50M video frames** and actions collected from the **CoinRun** environment (Cobbe et al., 2020) for training world models.
8
+ The dataset enables reproducible, large-scale experiments in action-conditioned video prediction using repos like [Jasmine](https://github.com/p-doom/jasmine).
9
+
10
+ ---
11
+
12
+ ### Dataset Summary
13
+ - **Environment:** CoinRun (Procgen Benchmark)
14
+ - **Frames:** 50 million
15
+ - **Resolution:** 64 × 64
16
+ - **Format:** [`ArrayRecord`](https://github.com/google/array_record) (for fast I/O)
17
+ - **Splits:** `train` / `val` / `test`
18
+ - **License:** [CC0 1.0](https://creativecommons.org/publicdomain/zero/1.0/)
19
+
20
+ ---
21
+
22
+ ## Usage
23
+ This dataset it part of the [Jasmine](https://github.com/p-doom/jasmine) repository release. Frames were collected from random agent rollouts.
24
+
25
+ The ArrayRecord format enables efficient dataloading using Grain ([Jasmine](https://github.com/p-doom/jasmine/blob/main/jasmine/utils/dataloader.py)).
26
+
27
+ ## Citation
28
+
29
+ If you use our CoinRun dataset, please cite our work:
30
+
31
+ ```tex
32
+ @article{
33
+ mahajan2025jasmine,
34
+ title={Jasmine: A simple, performant and scalable JAX-based world modeling codebase},
35
+ author={Mihir Mahajan and Alfred Nguyen and Franz Srambical and Stefan Bauer},
36
+ journal = {p(doom) blog},
37
+ year={2025},
38
+ url={https://pdoom.org/jasmine.html},
39
+ note = {https://pdoom.org/blog.html}
40
+ }