-
Notifications
You must be signed in to change notification settings - Fork 662
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
104 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
#!/usr/bin/env python3 | ||
"""Trains a SentencePiece model on transcripts across LibriSpeech train-clean-100, train-clean-360, and train-other-500. | ||
Example: | ||
python train_spm.py --librispeech-path ./datasets | ||
""" | ||
|
||
import io | ||
import pathlib | ||
from argparse import ArgumentParser, RawTextHelpFormatter | ||
|
||
import sentencepiece as spm | ||
|
||
|
||
def get_transcript_text(transcript_path): | ||
with open(transcript_path) as f: | ||
return [line.strip().split(" ", 1)[1].lower() for line in f] | ||
|
||
|
||
def get_transcripts(dataset_path): | ||
transcript_paths = dataset_path.glob("*/*/*.trans.txt") | ||
merged_transcripts = [] | ||
for path in transcript_paths: | ||
merged_transcripts += get_transcript_text(path) | ||
return merged_transcripts | ||
|
||
|
||
def train_spm(input): | ||
model_writer = io.BytesIO() | ||
spm.SentencePieceTrainer.train( | ||
sentence_iterator=iter(input), | ||
model_writer=model_writer, | ||
vocab_size=1023, | ||
model_type="unigram", | ||
input_sentence_size=-1, | ||
character_coverage=1.0, | ||
bos_id=0, | ||
pad_id=1, | ||
eos_id=2, | ||
unk_id=3, | ||
) | ||
return model_writer.getvalue() | ||
|
||
|
||
def parse_args(): | ||
default_output_path = "./spm_unigram_1023.model" | ||
parser = ArgumentParser(description=__doc__, formatter_class=RawTextHelpFormatter) | ||
parser.add_argument( | ||
"--librispeech-path", | ||
required=True, | ||
type=pathlib.Path, | ||
help="Path to LibriSpeech dataset.", | ||
) | ||
parser.add_argument( | ||
"--output-file", | ||
default=pathlib.Path(default_output_path), | ||
type=pathlib.Path, | ||
help=f"File to save model to. (Default: '{default_output_path}')", | ||
) | ||
return parser.parse_args() | ||
|
||
|
||
def run_cli(): | ||
args = parse_args() | ||
|
||
root = args.librispeech_path / "LibriSpeech" | ||
splits = ["train-clean-100", "train-clean-360", "train-other-500"] | ||
merged_transcripts = [] | ||
for split in splits: | ||
path = pathlib.Path(root) / split | ||
merged_transcripts += get_transcripts(path) | ||
|
||
model = train_spm(merged_transcripts) | ||
|
||
with open(args.output_file, "wb") as f: | ||
f.write(model) | ||
|
||
|
||
if __name__ == "__main__": | ||
run_cli() |