jakegrigsby/metamon
Updated
Error code: JobManagerCrashedError
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
A collection of parsed or ("reconstructed") Pokémon Showdown replays organized by format (gen1ou, gen2ou, etc.).
Converted to RL data by Metamon (arXiv Appendix D)
Each format is provided as a separate tar.gz file in the data/ directory:
To download and extract a specific format:
from huggingface_hub import hf_hub_download
import tarfile
# Download a specific format
file = hf_hub_download('jakegrigsby/pokemon-replays', 'data/gen1ou.tar.gz')
# Extract
with tarfile.open(file, 'r:gz') as tar:
tar.extractall()