Skip to content

Commit

Permalink
Fix grapheme label generation bug (#206)
Browse files Browse the repository at this point in the history
  • Loading branch information
upskyy committed Aug 13, 2023
1 parent 1b8101b commit c9da04e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openspeech/datasets/ksponspeech/preprocess/grapheme.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def generate_grapheme_labels(grapheme_transcripts, vocab_path: str):
vocab_dict = {"id": [0, 1, 2, 3], "grpm": ["<pad>", "<sos>", "<eos>", "<blank>"], "freq": [0, 0, 0, 0]}

for idx, (grpm, freq) in enumerate(zip(vocab_list, vocab_freq)):
vocab_dict["id"].append(idx + 3)
vocab_dict["id"].append(idx + 4)
vocab_dict["grpm"].append(grpm)
vocab_dict["freq"].append(freq)

Expand Down

0 comments on commit c9da04e

Please sign in to comment.