Datasets:
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:
- ✅ STEINS;GATE
- ⏳ STEINS;GATE 0
- ⏳ STEINS;GATE: My Darling's Embrace
- ⏳ STEINS;GATE: Linear Bounded Phenogram
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
- Unpack scripts and voices from
.mpkfiles. - Extract dialogs.
- Remove color coded tags:
[color index="800000"]. - Remove ruby tags and keep only the furigana part:
[ruby-base][ruby-text-start][ruby-text-end]. - 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