Spaces:
Runtime error
Runtime error
File size: 6,090 Bytes
af11ce4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
#!/usr/bin/env python3
# Copyright 2024-2025 Xiaomi Corp. (authors: Wei Kang)
#
# 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 file reads the texts in given manifest and save the cleaned new cuts.
"""
import argparse
import glob
import logging
import os
import re
import unicodedata
from concurrent.futures import ProcessPoolExecutor as Pool
from pathlib import Path
from lhotse import load_manifest_lazy
def get_args():
parser = argparse.ArgumentParser()
parser.add_argument(
"--subset",
type=str,
help="Subset of emilia, (ZH, EN, etc.)",
)
parser.add_argument(
"--jobs",
type=int,
default=20,
help="Number of jobs to processing.",
)
parser.add_argument(
"--source-dir",
type=str,
default="data/manifests/splits_raw",
help="The source directory of manifest files.",
)
parser.add_argument(
"--dest-dir",
type=str,
default="data/manifests/splits",
help="The destination directory of manifest files.",
)
return parser.parse_args()
def tokenize_by_CJK_char(text: str) -> str:
"""
Tokenize a line of text with CJK char.
Example:
input = "δ½ ε₯½δΈηζ― hello world ηδΈζ"
output = ["δ½ ", "ε₯½", "δΈ", "η", "ζ―", "hello", "world", "η", "δΈ", "ζ"]
"""
pattern = re.compile(
r"([\u1100-\u11ff"
r"\u2e80-\ua4cf"
r"\ua840-\uD7AF"
r"\uF900-\uFAFF"
r"\uFE30-\uFE4F"
r"\uFF65-\uFFDC"
r"\U00020000-\U0002FFFF])"
)
chars = pattern.split(text.strip())
merged = " ".join([w.strip() for w in chars if w.strip()])
return merged.split()
def is_hangul(char):
letters = unicodedata.normalize("NFD", char)
return all(
["\u1100" <= c <= "\u11ff" or "\u3131" <= c <= "\u318e" for c in letters]
)
def is_japanese(char):
return any(
[
start <= char <= end
for start, end in [
("\u3041", "\u3096"),
("\u30a0", "\u30ff"),
("\uff5f", "\uff9f"),
("\u31f0", "\u31ff"),
("\u3220", "\u3243"),
("\u3280", "\u337f"),
]
]
)
def is_chinese(char):
if char >= "\u4e00" and char <= "\u9fa5":
return True
else:
return False
def is_alphabet(char):
if (char >= "\u0041" and char <= "\u005a") or (
char >= "\u0061" and char <= "\u007a"
):
return True
else:
return False
def preprocess_emilia(file_name: str, input_dir: Path, output_dir: Path):
logging.info(f"Processing {file_name}")
if (output_dir / file_name).is_file():
logging.info(f"{file_name} exists, skipping.")
return
def _filter_cut(cut):
text = cut.supervisions[0].text
duration = cut.supervisions[0].duration
chinese = []
english = []
# only contains chinese and space and alphabets
clean_chars = []
for x in text:
if is_hangul(x):
logging.warning(f"Delete cut with text containing Korean : {text}")
return False
if is_japanese(x):
logging.warning(f"Delete cut with text containing Japanese : {text}")
return False
if is_chinese(x):
chinese.append(x)
clean_chars.append(x)
if is_alphabet(x):
english.append(x)
clean_chars.append(x)
if x == " ":
clean_chars.append(x)
if len(english) + len(chinese) == 0:
logging.warning(f"Delete cut with text has no valid chars : {text}")
return False
words = tokenize_by_CJK_char("".join(clean_chars))
for i in range(len(words) - 10):
if words[i : i + 10].count(words[i]) == 10:
logging.warning(f"Delete cut with text with too much repeats : {text}")
return False
# word speed, 20 - 600 / minute
if duration < len(words) / 600 * 60 or duration > len(words) / 20 * 60:
logging.warning(
f"Delete cut with audio text mismatch, duration : {duration}s, "
f"words : {len(words)}, text : {text}"
)
return False
return True
try:
cut_set = load_manifest_lazy(input_dir / file_name)
cut_set = cut_set.filter(_filter_cut)
cut_set.to_file(output_dir / file_name)
except Exception as e:
logging.error(f"Manifest {file_name} failed with error: {e}")
os.remove(str(output_dir / file_name))
if __name__ == "__main__":
formatter = "%(asctime)s %(levelname)s [%(filename)s:%(lineno)d] %(message)s"
logging.basicConfig(format=formatter, level=logging.INFO, force=True)
args = get_args()
input_dir = Path(args.source_dir)
output_dir = Path(args.dest_dir)
output_dir.mkdir(parents=True, exist_ok=True)
cut_files = glob.glob(f"{args.source_dir}/emilia_cuts_{args.subset}.*.jsonl.gz")
with Pool(max_workers=args.jobs) as pool:
futures = [
pool.submit(
preprocess_emilia,
filename.split("/")[-1],
input_dir,
output_dir,
)
for filename in cut_files
]
for f in futures:
f.result()
f.done()
logging.info("Processing done.")
|