File size: 10,483 Bytes
9598146 | 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 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 | import os
import glob
import json
from difflib import SequenceMatcher
import evaluate
from collections import defaultdict
def normalize_compound_pairs(refs, preds):
"""Align compound word boundaries between ref/pred pairs.
When a mismatch region has identical characters ignoring whitespace,
normalize both sides to the joined form.
"""
new_refs, new_preds = [], []
for ref_text, pred_text in zip(refs, preds):
ref_words = ref_text.split()
pred_words = pred_text.split()
sm = SequenceMatcher(None, ref_words, pred_words)
new_rw, new_pw = [], []
for tag, i1, i2, j1, j2 in sm.get_opcodes():
if tag == "equal":
new_rw.extend(ref_words[i1:i2])
new_pw.extend(pred_words[j1:j2])
else:
rc = "".join(ref_words[i1:i2])
pc = "".join(pred_words[j1:j2])
if rc == pc:
new_rw.append(rc)
new_pw.append(pc)
else:
new_rw.extend(ref_words[i1:i2])
new_pw.extend(pred_words[j1:j2])
new_refs.append(" ".join(new_rw))
new_preds.append(" ".join(new_pw))
return new_refs, new_preds
def read_manifest(manifest_path: str):
"""
Reads a manifest file (jsonl format) and returns a list of dictionaries containing samples.
"""
data = []
with open(manifest_path, "r", encoding="utf-8") as f:
for line in f:
if len(line) > 0:
datum = json.loads(line)
data.append(datum)
return data
def write_manifest(
references: list,
transcriptions: list,
model_id: str,
dataset_path: str,
dataset_name: str,
split: str,
audio_length: list = None,
transcription_time: list = None,
audio_filepaths: list = None,
):
"""
Writes a manifest file (jsonl format) and returns the path to the file.
Args:
references: Ground truth reference texts.
transcriptions: Model predicted transcriptions.
model_id: String identifier for the model.
dataset_path: Path to the dataset.
dataset_name: Name of the dataset.
split: Dataset split name.
audio_length: Length of each audio sample in seconds.
transcription_time: Transcription time of each sample in seconds.
audio_filepaths: List of file paths for each audio sample.
Returns:
Path to the manifest file.
"""
model_id = model_id.replace("/", "-")
dataset_path = dataset_path.replace("/", "-")
dataset_name = dataset_name.replace("/", "-")
if len(references) != len(transcriptions):
raise ValueError(
f"The number of samples in `references` ({len(references)}) "
f"must match `transcriptions` ({len(transcriptions)})."
)
if audio_length is not None and len(audio_length) != len(references):
raise ValueError(
f"The number of samples in `audio_length` ({len(audio_length)}) "
f"must match `references` ({len(references)})."
)
if transcription_time is not None and len(transcription_time) != len(references):
raise ValueError(
f"The number of samples in `transcription_time` ({len(transcription_time)}) "
f"must match `references` ({len(references)})."
)
if audio_filepaths is not None and len(audio_filepaths) != len(references):
raise ValueError(
f"The number of samples in `audio_filepaths` ({len(audio_filepaths)}) "
f"must match `references` ({len(references)})."
)
# Filter out samples where the normalized reference is empty,
# e.g. all-filler words removed by normalization. Mutates the caller's
# lists in-place (via slice assignment) so downstream WER computation
# in caller scripts also sees the filtered data.
valid_indices = [
i for i, ref in enumerate(references) if isinstance(ref, str) and ref.strip()
]
n_filtered = len(references) - len(valid_indices)
if n_filtered > 0:
print(f"Filtered {n_filtered} empty references")
references[:] = [references[i] for i in valid_indices]
transcriptions[:] = [transcriptions[i] for i in valid_indices]
if audio_length is not None:
audio_length[:] = [audio_length[i] for i in valid_indices]
if transcription_time is not None:
transcription_time[:] = [transcription_time[i] for i in valid_indices]
if audio_filepaths is not None:
audio_filepaths[:] = [audio_filepaths[i] for i in valid_indices]
audio_length = (
audio_length if audio_length is not None else len(references) * [None]
)
transcription_time = (
transcription_time
if transcription_time is not None
else len(references) * [None]
)
audio_filepaths = (
audio_filepaths if audio_filepaths is not None else len(references) * [None]
)
basedir = "./results/"
if not os.path.exists(basedir):
os.makedirs(basedir)
manifest_path = os.path.join(
basedir, f"MODEL_{model_id}_DATASET_{dataset_path}_{dataset_name}_{split}.jsonl"
)
with open(manifest_path, "w", encoding="utf-8") as f:
for idx, (text, transcript, audio_length, transcription_time, audio_filepath) in enumerate(
zip(references, transcriptions, audio_length, transcription_time, audio_filepaths)
):
datum = {
"audio_filepath": audio_filepath if audio_filepath else f"sample_{idx}",
"duration": audio_length,
"time": transcription_time,
"text": text,
"pred_text": transcript,
}
f.write(f"{json.dumps(datum, ensure_ascii=False)}\n")
return manifest_path
def score_results(directory: str, model_id: str = None, multilingual: bool = False):
"""
Scores all result files in a directory and returns a composite score over all evaluated datasets.
Args:
directory: Path to the result directory, containing one or more jsonl files.
model_id: Optional, model name to filter out result files based on model name.
multilingual: If True, apply compound word boundary normalization before
WER computation. Should only be enabled for non-English benchmarks.
Returns:
Composite score over all evaluated datasets and a dictionary of all results.
"""
# Strip trailing slash
if directory.endswith(os.pathsep):
directory = directory[:-1]
# Find all result files in the directory
result_files = list(glob.glob(f"{directory}/**/*.jsonl", recursive=True))
result_files = list(sorted(result_files))
# Filter files belonging to a specific model id
if model_id is not None and model_id != "":
print("Filtering models by id:", model_id)
model_id = model_id.replace("/", "-")
result_files = [fp for fp in result_files if model_id in fp]
# Check if any result files were found
if len(result_files) == 0:
raise ValueError(f"No result files found in {directory}")
# Utility function to parse the file path and extract model id, dataset path, dataset name and split
def parse_filepath(fp: str):
model_index = fp.find("MODEL_")
fp = fp[model_index:]
ds_index = fp.find("DATASET_")
model_id = fp[:ds_index].replace("MODEL_", "").rstrip("_")
author_index = model_id.find("-")
model_id = model_id[:author_index] + "/" + model_id[author_index + 1 :]
ds_fp = fp[ds_index:]
dataset_id = ds_fp.replace("DATASET_", "").rstrip(".jsonl")
return model_id, dataset_id
# Compute WER results per dataset, and RTFx over all datasets
results = {}
wer_metric = evaluate.load("wer")
for result_file in result_files:
manifest = read_manifest(result_file)
model_id_of_file, dataset_id = parse_filepath(result_file)
manifest = [datum for datum in manifest if datum["text"].strip()]
references = [datum["text"] for datum in manifest]
predictions = [datum["pred_text"] for datum in manifest]
time = [datum["time"] for datum in manifest]
duration = [datum["duration"] for datum in manifest]
compute_rtfx = all(time) and all(duration)
if multilingual:
references, predictions = normalize_compound_pairs(references, predictions)
wer = wer_metric.compute(references=references, predictions=predictions)
wer = round(100 * wer, 2)
if compute_rtfx:
audio_length = sum(duration)
inference_time = sum(time)
rtfx = round(sum(duration) / sum(time), 4)
else:
audio_length = inference_time = rtfx = None
result_key = f"{model_id_of_file} | {dataset_id}"
results[result_key] = {"wer": wer, "audio_length": audio_length, "inference_time": inference_time, "rtfx": rtfx}
print("*" * 80)
print("Results per dataset:")
print("*" * 80)
for k, v in results.items():
metrics = f"{k}: WER = {v['wer']:0.2f} %"
if v["rtfx"] is not None:
metrics += f", RTFx = {v['rtfx']:0.2f}"
print(metrics)
# composite WER should be computed over all datasets and with the same key
composite_wer = defaultdict(float)
composite_audio_length = defaultdict(float)
composite_inference_time = defaultdict(float)
count_entries = defaultdict(int)
for k, v in results.items():
key = k.split("|")[0].strip()
composite_wer[key] += v["wer"]
if v["rtfx"] is not None:
composite_audio_length[key] += v["audio_length"]
composite_inference_time[key] += v["inference_time"]
else:
composite_audio_length[key] = composite_inference_time[key] = None
count_entries[key] += 1
# normalize scores & print
print()
print("*" * 80)
print("Composite Results:")
print("*" * 80)
for k, v in composite_wer.items():
wer = v / count_entries[k]
print(f"{k}: WER = {wer:0.2f} %")
for k in composite_audio_length:
if composite_audio_length[k] is not None:
rtfx = composite_audio_length[k] / composite_inference_time[k]
print(f"{k}: RTFx = {rtfx:0.2f}")
print("*" * 80)
return composite_wer, results
|