You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

STEINS;GATE Voice Dataset

A voice dataset with transcriptions extracted from the STEINS;GATE visual novel series.

Information

This dataset contains official annotations from the game, including speaker name and transcription.

Current Status:

Uses

from datasets import load_dataset

# This will stream all data from all games
dataset = load_dataset("ntaquan0125/steinsgate-voice", split="train", streaming=True)

# Get the first sample
sample = next(iter(dataset))
print(sample)


# To load data from only one game, use the name parameter with the game's subset name.
game = "steinsgate"
subset = load_dataset("ntaquan0125/steinsgate-voice", name=game, split="train")

print(f"Number of samples in {game}: {len(subset)}")

Curation and Processing Pipeline

  1. Unpack scripts and voices from .mpk files.
  2. Extract dialogs.
  3. Remove color coded tags: [color index="800000"].
  4. Remove ruby tags and keep only the furigana part: [ruby-base][ruby-text-start][ruby-text-end].
  5. Map text-audio pairs.

Bias, Risks, and Limitations

Annotations are incomplete, some transcriptions are missing.

Text-audio mapping is done automatically and has not been verified thoroughly.

Speaker names are directly inferred from the ingame script, multiple names can belong to one person (e.g. ??? - Okabe - Rintaro). You may want to use the 3 characters of the audio filename to help identify the speaker: CRS -> Makise Kurisu.

Acknowledgement

We thank CommitteeOfZero for the extraction tools.

Copyright and Legal Notice

Copyright © MAGES./5pb./Nitroplus. All Rights Reserved.

The repository maintainers do not claim ownership of any copyrighted material contained within this dataset.

Users of this dataset are solely responsible for ensuring that their use complies with the copyright laws of their specific jurisdiction. By downloading or using this data, you acknowledge that you are doing so at your own risk.

If you are a copyright holder and believe your work has been included improperly, please open an issue. We will remove content when appropriate legal requests are made.

~El Psy Kongroo

Downloads last month
9