Automatic Speech Recognition
Transformers
Safetensors
Danish
qwen3_asr
danish
qwen
asr
speech-to-text
coral
podcast
streaming
Eval Results (legacy)
Instructions to use pluttodk/milo-asr with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use pluttodk/milo-asr with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="pluttodk/milo-asr")# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("pluttodk/milo-asr") model = AutoModelForMultimodalLM.from_pretrained("pluttodk/milo-asr", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 14,944 Bytes
d38720b | 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 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 | #!/usr/bin/env python
"""
Generate comparison plots for ASR model benchmarks.
Creates publication-quality visualizations comparing hvisketiske-v2
against other Danish ASR models on accuracy and performance metrics.
Usage:
python huggingface/generate_plots.py
# Specify custom result files:
python huggingface/generate_plots.py \
--coral-results ./results/full_comparison2.json \
--cv-results ./results/common_voice_comparison.json
Output:
huggingface/plots/
├── wer_comparison.png
├── cer_comparison.png
├── rtf_comparison.png
└── accuracy_vs_speed.png
"""
import argparse
import json
from pathlib import Path
from typing import Dict, List, Optional, Tuple
import matplotlib.pyplot as plt
import numpy as np
# Use a clean style
plt.style.use("seaborn-v0_8-whitegrid")
# Color palette - distinct colors for models
COLORS = {
"hvisketiske": "#2ecc71", # Green for our model (best)
"qwen3-base": "#27ae60", # Darker green for base Qwen
"hviske-v2": "#3498db", # Blue for hviske-v2
"hviske-v3": "#2980b9", # Darker blue for hviske-v3
"faster": "#e74c3c", # Red for faster-whisper models
"turbo": "#e67e22", # Orange for turbo
"default": "#95a5a6", # Gray for others
}
# Model display names mapping
MODEL_DISPLAY_NAMES = {
"Qwen3-ASR (checkpoint-23448)": "hvisketiske-v2\n(Qwen3-ASR finetuned)",
"hviske-v3-conversation (Whisper Large v3)": "hviske-v3\n(Whisper v3)",
"hviske-v2 (Whisper Large v2)": "hviske-v2\n(Whisper v2)",
"faster-hviske-v2 (CT2 distilled)": "faster-hviske-v2\n(CT2 distilled)",
"Whisper Large v3 Turbo": "Whisper v3 Turbo\n(faster-whisper)",
"Qwen3-ASR-1.7B (base)": "Qwen3-ASR-1.7B\n(base, not finetuned)",
}
def get_model_color(model_name: str) -> str:
"""Get color for a model based on its name."""
name_lower = model_name.lower()
# Our finetuned model (highest priority)
if "hvisketiske" in name_lower or "checkpoint" in name_lower:
return COLORS["hvisketiske"]
# Base Qwen3-ASR (not finetuned)
elif "qwen3-asr-1.7b" in name_lower and "base" in name_lower:
return COLORS["qwen3-base"]
elif "qwen" in name_lower:
return COLORS["hvisketiske"]
# Turbo model
elif "turbo" in name_lower:
return COLORS["turbo"]
# Faster-whisper models
elif "faster" in name_lower or "ct2" in name_lower:
return COLORS["faster"]
# hviske-v3
elif "hviske-v3" in name_lower or "v3" in name_lower:
return COLORS["hviske-v3"]
# hviske-v2
elif "hviske-v2" in name_lower or "v2" in name_lower:
return COLORS["hviske-v2"]
return COLORS["default"]
def get_display_name(model_name: str) -> str:
"""Get display name for a model."""
return MODEL_DISPLAY_NAMES.get(model_name, model_name)
def load_results(path: Path) -> Optional[dict]:
"""Load benchmark results from JSON file."""
if not path.exists():
print(f"Warning: Results file not found: {path}")
return None
with open(path, "r", encoding="utf-8") as f:
return json.load(f)
def extract_metrics(results: dict) -> Tuple[List[str], List[float], List[float], List[float], List[str]]:
"""
Extract metrics from results dictionary.
Returns:
Tuple of (names, wer_values, cer_values, rtf_values, colors)
"""
names = []
wer_values = []
cer_values = []
rtf_values = []
colors = []
for model_name, data in results["models"].items():
display_name = get_display_name(model_name)
names.append(display_name)
wer_values.append(data["accuracy"]["wer"] * 100) # Convert to percentage
cer_values.append(data["accuracy"]["cer"] * 100)
rtf_values.append(data["performance"]["real_time_factor"])
colors.append(get_model_color(model_name))
return names, wer_values, cer_values, rtf_values, colors
def plot_wer_comparison(
results: dict,
output_path: Path,
dataset_name: str = "CoRal v2",
) -> None:
"""Generate WER comparison bar chart."""
names, wer_values, _, _, colors = extract_metrics(results)
fig, ax = plt.subplots(figsize=(8, 5))
bars = ax.bar(names, wer_values, color=colors, edgecolor="white", linewidth=1.5)
# Add value labels on bars
for bar, val in zip(bars, wer_values):
height = bar.get_height()
ax.annotate(
f"{val:.1f}%",
xy=(bar.get_x() + bar.get_width() / 2, height),
xytext=(0, 5),
textcoords="offset points",
ha="center",
va="bottom",
fontsize=12,
fontweight="bold",
)
ax.set_ylabel("Word Error Rate (%)", fontsize=12)
ax.set_title(f"WER Comparison on {dataset_name}", fontsize=14, fontweight="bold")
ax.set_ylim(0, max(wer_values) * 1.2)
# Add grid
ax.yaxis.grid(True, linestyle="--", alpha=0.7)
ax.set_axisbelow(True)
plt.tight_layout()
plt.savefig(output_path, dpi=300, bbox_inches="tight", facecolor="white")
plt.close()
print(f"Saved: {output_path}")
def plot_cer_comparison(
results: dict,
output_path: Path,
dataset_name: str = "CoRal v2",
) -> None:
"""Generate CER comparison bar chart."""
names, _, cer_values, _, colors = extract_metrics(results)
fig, ax = plt.subplots(figsize=(8, 5))
bars = ax.bar(names, cer_values, color=colors, edgecolor="white", linewidth=1.5)
# Add value labels on bars
for bar, val in zip(bars, cer_values):
height = bar.get_height()
ax.annotate(
f"{val:.1f}%",
xy=(bar.get_x() + bar.get_width() / 2, height),
xytext=(0, 5),
textcoords="offset points",
ha="center",
va="bottom",
fontsize=12,
fontweight="bold",
)
ax.set_ylabel("Character Error Rate (%)", fontsize=12)
ax.set_title(f"CER Comparison on {dataset_name}", fontsize=14, fontweight="bold")
ax.set_ylim(0, max(cer_values) * 1.2)
# Add grid
ax.yaxis.grid(True, linestyle="--", alpha=0.7)
ax.set_axisbelow(True)
plt.tight_layout()
plt.savefig(output_path, dpi=300, bbox_inches="tight", facecolor="white")
plt.close()
print(f"Saved: {output_path}")
def plot_rtf_comparison(
results: dict,
output_path: Path,
dataset_name: str = "CoRal v2",
) -> None:
"""Generate RTF/speed comparison bar chart."""
names, _, _, rtf_values, colors = extract_metrics(results)
fig, ax = plt.subplots(figsize=(8, 5))
bars = ax.bar(names, rtf_values, color=colors, edgecolor="white", linewidth=1.5)
# Add value labels on bars
for bar, val in zip(bars, rtf_values):
height = bar.get_height()
ax.annotate(
f"{val:.3f}",
xy=(bar.get_x() + bar.get_width() / 2, height),
xytext=(0, 5),
textcoords="offset points",
ha="center",
va="bottom",
fontsize=12,
fontweight="bold",
)
# Add reference line at RTF=1.0 (real-time)
ax.axhline(y=1.0, color="red", linestyle="--", linewidth=1.5, label="Real-time (RTF=1.0)")
ax.set_ylabel("Real-Time Factor (lower is faster)", fontsize=12)
ax.set_title(f"Speed Comparison on {dataset_name}", fontsize=14, fontweight="bold")
ax.set_ylim(0, max(max(rtf_values) * 1.3, 1.1))
ax.legend(loc="upper right")
# Add grid
ax.yaxis.grid(True, linestyle="--", alpha=0.7)
ax.set_axisbelow(True)
plt.tight_layout()
plt.savefig(output_path, dpi=300, bbox_inches="tight", facecolor="white")
plt.close()
print(f"Saved: {output_path}")
def plot_accuracy_vs_speed(
results: dict,
output_path: Path,
dataset_name: str = "CoRal v2",
) -> None:
"""Generate accuracy vs speed scatter plot."""
fig, ax = plt.subplots(figsize=(9, 6))
for model_name, data in results["models"].items():
wer = data["accuracy"]["wer"] * 100
rtf = data["performance"]["real_time_factor"]
color = get_model_color(model_name)
display_name = get_display_name(model_name)
# Extract parameter count for bubble size
size_str = data["model_size"]
if "1.7B" in size_str:
size = 400
elif "2B" in size_str:
size = 500
else:
size = 300
ax.scatter(
rtf,
wer,
s=size,
c=color,
alpha=0.7,
edgecolors="white",
linewidth=2,
label=display_name.replace("\n", " "),
)
# Add label
ax.annotate(
display_name.replace("\n", " "),
xy=(rtf, wer),
xytext=(10, 10),
textcoords="offset points",
fontsize=10,
ha="left",
)
# Add reference line at RTF=1.0
ax.axvline(x=1.0, color="red", linestyle="--", linewidth=1, alpha=0.5, label="Real-time")
ax.set_xlabel("Real-Time Factor (lower is faster)", fontsize=12)
ax.set_ylabel("Word Error Rate (%)", fontsize=12)
ax.set_title(
f"Accuracy vs Speed Trade-off on {dataset_name}\n(bubble size = model parameters)",
fontsize=14,
fontweight="bold",
)
# Set axis limits with padding
all_wer = [d["accuracy"]["wer"] * 100 for d in results["models"].values()]
all_rtf = [d["performance"]["real_time_factor"] for d in results["models"].values()]
ax.set_xlim(0, max(all_rtf) * 1.5)
ax.set_ylim(min(all_wer) * 0.8, max(all_wer) * 1.2)
# Add grid
ax.grid(True, linestyle="--", alpha=0.7)
# Add annotation for best region
ax.annotate(
"Better",
xy=(0.02, min(all_wer) * 0.85),
fontsize=10,
color="green",
fontweight="bold",
)
ax.annotate(
"Faster & More Accurate",
xy=(0.02, min(all_wer) * 0.9),
fontsize=8,
color="gray",
)
plt.tight_layout()
plt.savefig(output_path, dpi=300, bbox_inches="tight", facecolor="white")
plt.close()
print(f"Saved: {output_path}")
def plot_multi_dataset_comparison(
coral_results: dict,
cv_results: Optional[dict],
output_path: Path,
) -> None:
"""Generate multi-dataset WER comparison plot."""
fig, ax = plt.subplots(figsize=(10, 6))
# Prepare data
datasets = ["CoRal v2"]
if cv_results:
datasets.append("Common Voice")
# Get model names from coral results
model_names = list(coral_results["models"].keys())
x = np.arange(len(datasets))
width = 0.35
for i, model_name in enumerate(model_names):
display_name = get_display_name(model_name)
color = get_model_color(model_name)
wer_values = [coral_results["models"][model_name]["accuracy"]["wer"] * 100]
if cv_results and model_name in cv_results["models"]:
wer_values.append(cv_results["models"][model_name]["accuracy"]["wer"] * 100)
elif cv_results:
wer_values.append(0) # Model not evaluated on this dataset
offset = (i - len(model_names) / 2 + 0.5) * width
bars = ax.bar(
x + offset,
wer_values,
width,
label=display_name.replace("\n", " "),
color=color,
edgecolor="white",
linewidth=1.5,
)
# Add value labels
for bar, val in zip(bars, wer_values):
if val > 0:
height = bar.get_height()
ax.annotate(
f"{val:.1f}%",
xy=(bar.get_x() + bar.get_width() / 2, height),
xytext=(0, 3),
textcoords="offset points",
ha="center",
va="bottom",
fontsize=10,
fontweight="bold",
)
ax.set_ylabel("Word Error Rate (%)", fontsize=12)
ax.set_title("WER Comparison Across Datasets", fontsize=14, fontweight="bold")
ax.set_xticks(x)
ax.set_xticklabels(datasets, fontsize=11)
ax.legend(loc="upper right")
ax.yaxis.grid(True, linestyle="--", alpha=0.7)
ax.set_axisbelow(True)
plt.tight_layout()
plt.savefig(output_path, dpi=300, bbox_inches="tight", facecolor="white")
plt.close()
print(f"Saved: {output_path}")
def parse_args() -> argparse.Namespace:
"""Parse command line arguments."""
parser = argparse.ArgumentParser(description="Generate ASR comparison plots")
parser.add_argument(
"--coral-results",
type=Path,
default=Path("results/full_comparison2.json"),
help="Path to CoRal benchmark results",
)
parser.add_argument(
"--cv-results",
type=Path,
default=Path("results/common_voice_comparison.json"),
help="Path to Common Voice benchmark results",
)
parser.add_argument(
"--output-dir",
type=Path,
default=Path(__file__).parent / "plots",
help="Output directory for plots",
)
return parser.parse_args()
def main() -> None:
"""Main entry point for plot generation."""
args = parse_args()
# Create output directory
args.output_dir.mkdir(parents=True, exist_ok=True)
# Load results
coral_results = load_results(args.coral_results)
cv_results = load_results(args.cv_results)
if coral_results is None:
print("Error: CoRal results file is required")
return
print("=" * 60)
print("Generating ASR Comparison Plots")
print("=" * 60)
print(f"Output directory: {args.output_dir}")
print()
# Generate CoRal plots
print("Generating CoRal v2 plots...")
plot_wer_comparison(coral_results, args.output_dir / "wer_comparison.png", "CoRal v2")
plot_cer_comparison(coral_results, args.output_dir / "cer_comparison.png", "CoRal v2")
plot_rtf_comparison(coral_results, args.output_dir / "rtf_comparison.png", "CoRal v2")
plot_accuracy_vs_speed(coral_results, args.output_dir / "accuracy_vs_speed.png", "CoRal v2")
# Generate Common Voice plots if available
if cv_results:
print("\nGenerating Common Voice plots...")
plot_wer_comparison(
cv_results, args.output_dir / "wer_comparison_cv.png", "Common Voice Danish"
)
plot_cer_comparison(
cv_results, args.output_dir / "cer_comparison_cv.png", "Common Voice Danish"
)
plot_rtf_comparison(
cv_results, args.output_dir / "rtf_comparison_cv.png", "Common Voice Danish"
)
# Multi-dataset comparison
print("\nGenerating multi-dataset comparison...")
plot_multi_dataset_comparison(
coral_results, cv_results, args.output_dir / "multi_dataset_wer.png"
)
print("\n" + "=" * 60)
print("Plot generation complete!")
print("=" * 60)
if __name__ == "__main__":
main()
|