mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-08-09 01:52:41 +00:00
Validate that there are no OOV tokens in BPE-based lexicons. (#359)
* Validate that there are no OOV tokens in BPE-based lexicons. * Typo fixes.
This commit is contained in:
parent
e30e042c39
commit
0f180b3ce2
@ -145,7 +145,14 @@ def generate_lexicon(
|
|||||||
sp = spm.SentencePieceProcessor()
|
sp = spm.SentencePieceProcessor()
|
||||||
sp.load(str(model_file))
|
sp.load(str(model_file))
|
||||||
|
|
||||||
words_pieces: List[List[str]] = sp.encode(words, out_type=str)
|
# Convert word to word piece IDs instead of word piece strings
|
||||||
|
# to avoid OOV tokens.
|
||||||
|
words_pieces_ids: List[List[int]] = sp.encode(words, out_type=int)
|
||||||
|
|
||||||
|
# Now convert word piece IDs back to word piece strings.
|
||||||
|
words_pieces: List[List[str]] = [
|
||||||
|
sp.id_to_piece(ids) for ids in words_pieces_ids
|
||||||
|
]
|
||||||
|
|
||||||
lexicon = []
|
lexicon = []
|
||||||
for word, pieces in zip(words, words_pieces):
|
for word, pieces in zip(words, words_pieces):
|
||||||
|
77
egs/librispeech/ASR/local/validate_bpe_lexicon.py
Executable file
77
egs/librispeech/ASR/local/validate_bpe_lexicon.py
Executable file
@ -0,0 +1,77 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
# Copyright 2022 Xiaomi Corp. (authors: Fangjun Kuang)
|
||||||
|
#
|
||||||
|
# See ../../../../LICENSE for clarification regarding multiple authors
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
"""
|
||||||
|
This script checks that there are no OOV tokens in the BPE-based lexicon.
|
||||||
|
|
||||||
|
Usage example:
|
||||||
|
|
||||||
|
python3 ./local/validate_bpe_lexicon.py \
|
||||||
|
--lexicon /path/to/lexicon.txt \
|
||||||
|
--bpe-model /path/to/bpe.model
|
||||||
|
"""
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
from pathlib import Path
|
||||||
|
from typing import List, Tuple
|
||||||
|
|
||||||
|
import sentencepiece as spm
|
||||||
|
|
||||||
|
from icefall.lexicon import read_lexicon
|
||||||
|
|
||||||
|
# Map word to word pieces
|
||||||
|
Lexicon = List[Tuple[str, List[str]]]
|
||||||
|
|
||||||
|
|
||||||
|
def get_args():
|
||||||
|
parser = argparse.ArgumentParser()
|
||||||
|
|
||||||
|
parser.add_argument(
|
||||||
|
"--lexicon",
|
||||||
|
required=True,
|
||||||
|
type=Path,
|
||||||
|
help="Path to lexicon.txt",
|
||||||
|
)
|
||||||
|
|
||||||
|
parser.add_argument(
|
||||||
|
"--bpe-model",
|
||||||
|
required=True,
|
||||||
|
type=Path,
|
||||||
|
help="Path to bpe.model",
|
||||||
|
)
|
||||||
|
|
||||||
|
return parser.parse_args()
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
args = get_args()
|
||||||
|
assert args.lexicon.is_file(), args.lexicon
|
||||||
|
assert args.bpe_model.is_file(), args.bpe_model
|
||||||
|
|
||||||
|
lexicon = read_lexicon(args.lexicon)
|
||||||
|
|
||||||
|
sp = spm.SentencePieceProcessor()
|
||||||
|
sp.load(str(args.bpe_model))
|
||||||
|
|
||||||
|
word_pieces = set(sp.id_to_piece(list(range(sp.vocab_size()))))
|
||||||
|
for word, pieces in lexicon:
|
||||||
|
for p in pieces:
|
||||||
|
if p not in word_pieces:
|
||||||
|
raise ValueError(f"The word {word} contains an OOV token {p}")
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
@ -184,13 +184,20 @@ if [ $stage -le 6 ] && [ $stop_stage -ge 6 ]; then
|
|||||||
done > $lang_dir/transcript_words.txt
|
done > $lang_dir/transcript_words.txt
|
||||||
fi
|
fi
|
||||||
|
|
||||||
./local/train_bpe_model.py \
|
if [ ! -f $lang_dir/bpe.model ]; then
|
||||||
--lang-dir $lang_dir \
|
./local/train_bpe_model.py \
|
||||||
--vocab-size $vocab_size \
|
--lang-dir $lang_dir \
|
||||||
--transcript $lang_dir/transcript_words.txt
|
--vocab-size $vocab_size \
|
||||||
|
--transcript $lang_dir/transcript_words.txt
|
||||||
|
fi
|
||||||
|
|
||||||
if [ ! -f $lang_dir/L_disambig.pt ]; then
|
if [ ! -f $lang_dir/L_disambig.pt ]; then
|
||||||
./local/prepare_lang_bpe.py --lang-dir $lang_dir
|
./local/prepare_lang_bpe.py --lang-dir $lang_dir
|
||||||
|
|
||||||
|
log "Validating $lang_dir/lexicon.txt"
|
||||||
|
./local/validate_bpe_lexicon.py \
|
||||||
|
--lexicon $lang_dir/lexicon.txt \
|
||||||
|
--bpe-model $lang_dir/bpe.model
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user