Dataset Viewer
The dataset viewer is not available for this split.
Job manager crashed while running this job (missing heartbeats).
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.

YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/datasets-cards)

Metamon Replay Dataset

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)

overview image

Structure

Each format is provided as a separate tar.gz file in the data/ directory:

  • data/gen1ou.tar.gz - Generation 1 OU format replays
  • data/gen2ou.tar.gz - Generation 2 OU format replays ...etc.

Usage

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()
Downloads last month
279

Models trained or fine-tuned on jakegrigsby/metamon-parsed-replays