File size: 18,302 Bytes
7b4006a | 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 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 | import argparse
import os
import re
import torch
from torch.nn.attention import sdpa_kernel, SDPBackend
from transformers import AutoConfig, AutoModelForSpeechSeq2Seq, AutoModelForMultimodalLM, AutoModelForCTC, AutoProcessor, MODEL_FOR_MULTIMODAL_LM_MAPPING, MODEL_FOR_SPEECH_SEQ_2_SEQ_MAPPING, MODEL_FOR_CTC_MAPPING, CompileConfig
import evaluate
from normalizer import data_utils
from tqdm import tqdm
import random
import numpy as np
wer_metric = evaluate.load("wer")
torch.set_float32_matmul_precision('high')
def remove_brackets(text):
"""
Remove parentheses from text, replacing them with spaces.
Some models (e.g. Cohere ASR) output parentheses that would cause the
normalizer to delete the enclosed text entirely, leading to false
deletion errors in the predictions.
"""
text = text.replace("(", " ").replace(")", " ")
text = re.sub(r'\s+', ' ', text)
return text
def main(args):
# Set seed due to randomness in some models (e.g. VibeVoice's acoustic tokenizer sampling)
seed = 42
random.seed(seed)
np.random.seed(seed)
torch.manual_seed(seed)
torch.cuda.manual_seed_all(seed)
torch.backends.cudnn.deterministic = True
torch_dtype = getattr(torch, args.dtype)
config = AutoConfig.from_pretrained(args.model_id, revision=args.revision)
if type(config) in MODEL_FOR_SPEECH_SEQ_2_SEQ_MAPPING:
cls_model = AutoModelForSpeechSeq2Seq
elif type(config) in MODEL_FOR_MULTIMODAL_LM_MAPPING:
cls_model = AutoModelForMultimodalLM
elif type(config) in MODEL_FOR_CTC_MAPPING:
cls_model = AutoModelForCTC
else:
raise ValueError(f"Model config of type {type(config)} not recognized in Transformers mappings.")
is_ctc = cls_model == AutoModelForCTC
if "vibevoice" in args.model_id.lower():
model = cls_model.from_pretrained(
args.model_id,
dtype=torch_dtype,
attn_implementation={
"acoustic_tokenizer_encoder_config": "eager",
"semantic_tokenizer_encoder_config": "eager",
"text_config": "sdpa",
}
)
else:
model = cls_model.from_pretrained(
args.model_id,
dtype=torch_dtype,
revision=args.revision,
attn_implementation=args.attn_implementation,
)
model.to(args.device)
model.eval()
print(f"Model size: {sum(p.numel() for p in model.parameters()) / 1e9:.2f}B parameters")
processor = AutoProcessor.from_pretrained(args.model_id, revision=args.revision)
has_transcription_processor = hasattr(processor, "apply_transcription_request")
is_cohere = "cohere" in args.model_id.lower() and "transcribe" in args.model_id.lower()
# Optional prompt for audio language models, newer models should use `apply_transcription_request`
text = None
if "granite-speech-3.3" in args.model_id.lower():
# create text prompt
chat = [
{
"role": "system",
"content": "Knowledge Cutoff Date: April 2024.\nToday's Date: December 19, 2024.\nYou are Granite, developed by IBM. You are a helpful AI assistant",
},
{
"role": "user",
"content": "<|audio|>can you transcribe the speech into a written format?",
}
]
text = processor.apply_chat_template(
chat, tokenize=False, add_generation_prompt=True
)
# Extract sampling rate
if hasattr(processor, "feature_extractor") and processor.feature_extractor is not None:
sampling_rate = processor.feature_extractor.sampling_rate
elif hasattr(processor, "audio_processor") and processor.audio_processor is not None:
sampling_rate = processor.audio_processor.sampling_rate
else:
sampling_rate = 16_000
# Set generate arguments
if model.can_generate():
gen_kwargs = {"max_new_tokens": args.max_new_tokens}
if getattr(model.generation_config, "is_multilingual", False):
gen_kwargs["language"] = "en"
gen_kwargs["task"] = "transcribe"
# Clear deprecated Whisper generation config fields to suppress warnings
if hasattr(model.generation_config, "forced_decoder_ids"):
model.generation_config.forced_decoder_ids = None
if hasattr(model.generation_config, "suppress_tokens"):
model.generation_config.suppress_tokens = []
if hasattr(model.generation_config, "begin_suppress_tokens"):
model.generation_config.begin_suppress_tokens = []
if "granite-speech-3.3" in args.model_id.lower():
gen_kwargs["repetition_penalty"] = 1.0
elif args.max_new_tokens:
raise ValueError("`max_new_tokens` should only be set for auto-regressive models, but got a CTC model.")
if args.torch_compile is not None:
if model.can_generate():
gen_kwargs["compile_config"] = CompileConfig(mode=args.torch_compile, fullgraph=args.compile_fullgraph)
# enable static k/v cache for autoregressive models
model.generation_config.cache_implementation = "static"
else:
model = torch.compile(model, mode=args.torch_compile, fullgraph=args.compile_fullgraph)
# Ensure warm-up runs when using torch.compile
if args.warmup_steps is None or args.warmup_steps < 1:
print("`--torch_compile` is enabled; forcing `--warmup_steps=10` to trigger compilation before timed runs.")
args.warmup_steps = 10
def benchmark(batch, min_new_tokens=None):
# Load audio inputs
audios = [audio["array"] for audio in batch["audio"]]
minibatch_size = len(audios)
sampling_rate = batch["audio"][0]["sampling_rate"]
batch["audio_length_s"] = [len(audio) / sampling_rate for audio in audios]
batch["audio_filepath"] = data_utils.extract_audio_filepaths_from_batch(batch, minibatch_size)
if text is not None:
texts=[text] * minibatch_size
else:
texts = None
# START TIMING
torch.cuda.synchronize(device=args.device)
start_event = torch.cuda.Event(enable_timing=True)
end_event = torch.cuda.Event(enable_timing=True)
start_event.record()
# 1. Pre-Processing
# 1.1 Pad audios to max batch size if using torch compile to prevent re-compilations
padding_size = None
if minibatch_size != args.batch_size and args.torch_compile is not None:
padding_size = args.batch_size - minibatch_size
padding_audios = [audios[-1] for _ in range(padding_size)]
audios.extend(padding_audios)
if is_cohere:
inputs = processor(
audios,
sampling_rate=sampling_rate,
return_tensors="pt",
language="en",
punctuation=False,
)
elif has_transcription_processor:
if "voxtral" in args.model_id.lower():
inputs = processor.apply_transcription_request(
language="en", # English for benchmark consistency
audio=audios,
model_id=args.model_id,
sampling_rate=sampling_rate,
format=["wav"] * len(audios),
)
else:
inputs = processor.apply_transcription_request(audios)
prompt_len = inputs["input_ids"].shape[1]
elif texts is not None:
inputs = processor(
texts,
audios,
device=args.device, # Computation device; returned tensors are put on CPU
return_tensors="pt",
).to(args.device)
prompt_len = inputs["input_ids"].shape[1]
elif not model.can_generate(): #or len(audios[0]) > processor.feature_extractor.n_samples:
# 1.2 Either CTC pre-processing (normalize to mean 0, std 1), or long-form Whisper processing
inputs = processor(
audios,
sampling_rate=sampling_rate,
truncation=False,
padding="longest",
return_tensors="pt",
return_attention_mask=True,
)
else:
# 1.3 Standard Whisper processing: pad audios to 30-seconds and converted to log-mel
if args.longform:
inputs = processor(
audios,
sampling_rate=sampling_rate,
return_tensors="pt",
truncation=False,
padding="longest",
return_attention_mask=True,
)
else:
inputs = processor(audios, sampling_rate=sampling_rate, return_tensors="pt", padding="longest", return_attention_mask=True, device=args.device)
inputs = inputs.to(args.device, dtype=torch_dtype)
# 2. Model Inference
if args.torch_compile is not None:
sdpa_backends = [SDPBackend.MATH]
else:
sdpa_backends = [SDPBackend.FLASH_ATTENTION, SDPBackend.EFFICIENT_ATTENTION, SDPBackend.MATH]
with sdpa_kernel(sdpa_backends):
if model.can_generate():
# 2.1 Auto-regressive generation for LM-based models
if args.longform:
pred_ids = model.generate(**inputs, **gen_kwargs, return_timestamps=True)
else:
pred_ids = model.generate(**inputs, **gen_kwargs, min_new_tokens=min_new_tokens)
else:
# 2.2. Single forward pass for CTC
with torch.no_grad():
logits = model(**inputs).logits
pred_ids = logits.argmax(-1)
# 3. Post-processing
# 3.1 Strip padded ids from predictions
if padding_size is not None:
pred_ids = pred_ids[:-padding_size, ...]
# 3.2 Convert token ids to text transcription
if is_cohere:
audio_chunk_index = inputs.get("audio_chunk_index")
pred_text = processor.decode(
pred_ids, skip_special_tokens=True,
audio_chunk_index=audio_chunk_index, language="en",
)
pred_text = [remove_brackets(t) for t in pred_text]
elif "vibevoice" in args.model_id.lower():
# VibeVoice: strip the input prompt tokens then use the model's own decode API
generated_ids = pred_ids[:, prompt_len:]
try:
pred_text = processor.decode(generated_ids, return_format="transcription_only")
except Exception as e:
print(f"Batch decoding failed with error: {e}. Falling back to individual sample decoding.")
pred_text = []
for i, sample_ids in enumerate(generated_ids):
try:
decoded = processor.decode(sample_ids.unsqueeze(0), return_format="transcription_only")
pred_text.append(decoded[0] if isinstance(decoded, list) else decoded)
except Exception as sample_error:
print(f"Sample {i} decoding failed with error: {sample_error}. Setting to empty transcript.")
pred_text.append("")
elif has_transcription_processor or texts is not None:
# Strip input prompt tokens
pred_text = processor.decode(pred_ids[:, prompt_len:], skip_special_tokens=True)
elif is_ctc:
# don't use skip_special_tokens as it collapses double letters
pred_text = processor.batch_decode(pred_ids)
else:
pred_text = processor.decode(pred_ids, skip_special_tokens=True)
# END TIMING
end_event.record()
torch.cuda.synchronize(device=args.device)
runtime = start_event.elapsed_time(end_event) / 1000.0
# normalize by minibatch size since we want the per-sample time
batch["transcription_time_s"] = minibatch_size * [runtime / minibatch_size]
# normalize transcriptions with English normalizer
batch["predictions"] = [data_utils.normalizer(pred) for pred in pred_text]
batch["references"] = batch["norm_text"]
return batch
if args.warmup_steps is not None:
dataset = data_utils.load_data(args)
dataset = data_utils.prepare_data(dataset, sampling_rate=sampling_rate)
num_warmup_samples = args.warmup_steps * args.batch_size
if args.streaming:
warmup_dataset = dataset.take(num_warmup_samples)
else:
warmup_dataset = dataset.select(range(min(num_warmup_samples, len(dataset))))
warmup_dataset = iter(warmup_dataset.map(benchmark, batch_size=args.batch_size, batched=True, fn_kwargs={"min_new_tokens": args.max_new_tokens}))
for _ in tqdm(warmup_dataset, desc="Warming up..."):
continue
dataset = data_utils.load_data(args)
if args.max_eval_samples is not None and args.max_eval_samples > 0:
print(f"Subsampling dataset to first {args.max_eval_samples} samples!")
if args.streaming:
dataset = dataset.take(args.max_eval_samples)
else:
dataset = dataset.select(range(min(args.max_eval_samples, len(dataset))))
dataset = data_utils.prepare_data(dataset, sampling_rate=sampling_rate)
dataset = dataset.map(
benchmark, batch_size=args.batch_size, batched=True, remove_columns=["audio"],
)
all_results = {
"audio_length_s": [],
"transcription_time_s": [],
"predictions": [],
"references": [],
"audio_filepath": [],
}
result_iter = iter(dataset)
for result in tqdm(result_iter, desc="Samples..."):
for key in all_results:
all_results[key].append(result[key])
# Write manifest results (WER and RTFX)
# Filtering of empty references is handled inside write_manifest.
manifest_path = data_utils.write_manifest(
all_results["references"],
all_results["predictions"],
args.model_id,
args.dataset_path,
args.dataset,
args.split,
audio_length=all_results["audio_length_s"],
transcription_time=all_results["transcription_time_s"],
audio_filepaths=all_results["audio_filepath"],
)
print("Results saved at path:", os.path.abspath(manifest_path))
wer = wer_metric.compute(
references=all_results["references"], predictions=all_results["predictions"]
)
wer = round(100 * wer, 2)
rtfx = round(sum(all_results["audio_length_s"]) / sum(all_results["transcription_time_s"]), 2)
print("WER:", wer, "%", "RTFx:", rtfx)
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument(
"--model_id",
type=str,
required=True,
help="Model identifier. Should be loadable with 🤗 Transformers",
)
parser.add_argument(
"--dataset_path",
type=str,
default="hf-audio/open-asr-leaderboard",
help="Dataset path. By default, it is `hf-audio/open-asr-leaderboard`",
)
parser.add_argument(
"--dataset",
type=str,
required=True,
help="Dataset name. *E.g.* `'librispeech_asr` for the LibriSpeech ASR dataset, or `'common_voice'` for Common Voice. The full list of dataset names "
"can be found at `https://huggingface.co/datasets/hf-audio/open-asr-leaderboard`",
)
parser.add_argument(
"--split",
type=str,
default="test",
help="Split of the dataset. *E.g.* `'validation`' for the dev split, or `'test'` for the test split.",
)
parser.add_argument(
"--device",
type=int,
default=-1,
help="The device to run the pipeline on. -1 for CPU (default), 0 for the first GPU and so on.",
)
parser.add_argument(
"--batch_size",
type=int,
default=16,
help="Number of samples to go through each streamed batch.",
)
parser.add_argument(
"--max_eval_samples",
type=int,
default=None,
help="Number of samples to be evaluated. Put a lower number e.g. 64 for testing this script.",
)
parser.add_argument(
"--streaming",
action="store_true",
help="Stream the dataset lazily over the network instead of downloading it in full before the evaluation. Off by default for reproducible benchmark timings.",
)
parser.add_argument(
"--max_new_tokens",
type=int,
default=None,
help="Maximum number of tokens to generate (for auto-regressive models).",
)
parser.add_argument(
"--longform",
action="store_true",
help="Whether to use longform mode.",
)
parser.add_argument(
"--torch_compile",
type=str,
default=None,
help="Mode for torch compiling model forward pass. Can be either 'default', 'reduce-overhead', 'max-autotune' or 'max-autotune-no-cudagraphs'.",
)
parser.add_argument(
"--compile_fullgraph",
action="store_true",
help="Whether to do full graph compilation.",
)
parser.add_argument(
"--dtype",
type=str,
default="bfloat16",
help="The dtype to use for model loading and inference. E.g. 'bfloat16', 'float16', 'float32'.",
)
parser.add_argument(
"--attn_implementation",
type=str,
default="sdpa",
help="Attention implementation to use for model loading (e.g. 'sdpa', 'eager', 'flash_attention_2').",
)
parser.add_argument(
"--warmup_steps",
type=int,
default=10,
help="Number of warm-up steps to run before launching the timed runs.",
)
parser.add_argument(
"--revision",
type=str,
default=None,
help="Model revision to use (e.g. 'refs/pr/11' for a PR branch). Defaults to the main branch.",
)
args = parser.parse_args()
print("*" * 100)
print(f"Evaluating {args.model_id} on {args.dataset_path} / {args.dataset} / {args.split}")
print("*" * 100)
main(args)
|