mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-08-12 19:42:19 +00:00
79 lines
2.4 KiB
Python
Executable File
79 lines
2.4 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# Copyright 2024 Xiaomi Corp. (authors: Yifan Yang)
|
|
#
|
|
# 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.
|
|
|
|
import gzip
|
|
import json
|
|
import re
|
|
import sys
|
|
from concurrent.futures.process import ProcessPoolExecutor
|
|
from pathlib import Path
|
|
|
|
from tn.english.normalizer import Normalizer as EnNormalizer
|
|
from tqdm import tqdm
|
|
|
|
from icefall.utils import str2bool
|
|
|
|
|
|
class TextNormalizer:
|
|
def __init__(self):
|
|
self.en_tn_model = EnNormalizer(cache_dir="/tmp/tn", overwrite_cache=False)
|
|
self.table = str.maketrans(
|
|
"’‘,。;?!():-《》、“”【】", "'',.;?!(): <>/\"\"[]"
|
|
)
|
|
|
|
def __call__(self, cut):
|
|
text = cut["supervisions"][0]["custom"]["texts"][0]
|
|
|
|
# Process brackets
|
|
text = re.sub(r"\([^\)]*\d[^\)]*\)", " ", text)
|
|
text = re.sub(r"\([^\)]*\)", " ", text)
|
|
|
|
# Apply mappings
|
|
text = text.translate(self.table)
|
|
|
|
# Remove extra spaces
|
|
text = re.sub(r"\s+", " ", text).strip()
|
|
|
|
text = self.en_tn_model.normalize(text)
|
|
|
|
cut["supervisions"][0]["text"] = text
|
|
del cut["supervisions"][0]["custom"]
|
|
del cut["custom"]
|
|
|
|
return cut
|
|
|
|
|
|
# Assign text of the supervisions and remove unnecessary entries.
|
|
def main():
|
|
assert len(sys.argv) == 3, "Usage: ./local/prepare_manifest.py INPUT OUTPUT_DIR"
|
|
fname = Path(sys.argv[1]).name
|
|
oname = Path(sys.argv[2]) / fname
|
|
|
|
tn = TextNormalizer()
|
|
with ProcessPoolExecutor() as ex:
|
|
with gzip.open(sys.argv[1], "r") as fin:
|
|
cuts = (json.loads(line) for line in fin)
|
|
results = ex.map(tn, cuts)
|
|
|
|
with gzip.open(oname, "w") as fout:
|
|
for cut in tqdm(results, desc="Processing"):
|
|
fout.write((json.dumps(cut) + "\n").encode())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|