Spaces:
Running
Running
File size: 24,422 Bytes
059b009 3335125 059b009 3335125 439d9cc 89c259f 5f254a7 e75bca2 439d9cc 059b009 3335125 059b009 3335125 059b009 3335125 059b009 439d9cc 059b009 439d9cc 059b009 439d9cc 059b009 439d9cc 059b009 439d9cc 059b009 | 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 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 | """
Streamlit app to inspect MMS evaluation results.
Run from the finetuning/mms directory:
streamlit run inspect_results.py
Or point at a different results directory:
streamlit run inspect_results.py -- --results_dir /path/to/results
"""
import difflib
import html as html_lib
import os
import re
from pathlib import Path
import pandas as pd
import streamlit as st
from huggingface_hub import hf_hub_download
def check_password():
if "authenticated" not in st.session_state:
st.session_state.authenticated = False
if not st.session_state.authenticated:
st.markdown("## π Login required")
password = st.text_input("Enter password", type="password")
if st.button("Login"):
try:
correct = os.environ.get("APP_PASSWORD")
except Exception as e:
st.error(f"Error: {e}")
st.stop()
if password == correct:
st.session_state.authenticated = True
st.rerun()
else:
st.error("Incorrect password")
st.stop()
DATASETS = ["clb_belize", "hf_fongbe", "clb", "fongbe", "alffa"]
SPLITS = ["validation", "test"]
DECODES = ["greedy", "lm", "beam"]
_FNAME_RE = re.compile(
rf"^eval_(.+?)_({'|'.join(DATASETS)})_({'|'.join(SPLITS)})_({'|'.join(DECODES)})\.csv$"
)
CSS = """
<style>
/* ββ Backgrounds ββ */
[data-testid="stAppViewContainer"],
[data-testid="stAppViewContainer"] > .main,
[data-testid="stHeader"] { background-color: #f8f8f6; }
/* ββ Typography β avoid overriding icon fonts by targeting text nodes only ββ */
body, p, h1, h2, h3, h4, h5, h6,
[data-testid="stMarkdownContainer"],
[data-testid="stText"],
[data-testid="stMetricLabel"],
[data-testid="stMetricValue"],
[data-testid="stSidebar"] label,
.ex-card, .zoom-row, .badge, .ex-filename {
font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
color: #1a1a1a;
}
/* ββ Sidebar ββ */
[data-testid="stSidebar"] {
background-color: #f0efed;
border-right: 1px solid #e5e3e0;
}
[data-testid="stSidebar"] label {
font-size: 0.68rem !important;
font-weight: 600 !important;
letter-spacing: 0.07em;
text-transform: uppercase;
color: #888 !important;
}
/* ββ All select boxes (sidebar + main) ββ */
[data-baseweb="select"] > div {
background-color: #fff !important;
border: 1px solid #ddd !important;
border-radius: 8px !important;
color: #1a1a1a !important;
}
[data-baseweb="select"] span { color: #1a1a1a !important; }
/* Dropdown menu popup */
[data-baseweb="popover"],
[data-baseweb="menu"] {
background-color: #fff !important;
border: 1px solid #e5e5e5 !important;
border-radius: 8px !important;
box-shadow: 0 4px 16px rgba(0,0,0,0.08) !important;
}
[data-baseweb="menu"] li,
[data-baseweb="menu"] [role="option"] {
background-color: #fff !important;
color: #1a1a1a !important;
}
[data-baseweb="menu"] li:hover,
[data-baseweb="menu"] [role="option"]:hover {
background-color: #f5f5f3 !important;
}
/* ββ Buttons ββ */
[data-testid="stButton"] button {
background-color: #fff !important;
color: #1a1a1a !important;
border: 1px solid #ddd !important;
border-radius: 8px !important;
font-size: 0.8rem !important;
font-weight: 500 !important;
padding: 0.3rem 0.8rem !important;
box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
}
[data-testid="stButton"] button:hover {
background-color: #f5f5f3 !important;
border-color: #ccc !important;
}
/* ββ Metrics ββ */
[data-testid="stMetric"] {
background: #fff;
border: 1px solid #ebebeb;
border-radius: 10px;
padding: 0.9rem 1.1rem;
box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
[data-testid="stMetricLabel"] > div {
font-size: 0.68rem !important;
font-weight: 600 !important;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #aaa !important;
}
[data-testid="stMetricValue"] > div {
font-size: 1.6rem !important;
font-weight: 500 !important;
color: #1a1a1a !important;
}
/* ββ Example container (st.container border=True) ββ */
[data-testid="stVerticalBlockBorderWrapper"] {
background: #fff !important;
border: 1px solid #e8e5e0 !important;
border-radius: 12px !important;
box-shadow: 0 1px 5px rgba(0,0,0,0.05) !important;
padding: 0.1rem 0.25rem !important;
margin-bottom: 0.75rem !important;
transition: box-shadow 0.15s;
}
[data-testid="stVerticalBlockBorderWrapper"]:hover {
box-shadow: 0 3px 12px rgba(0,0,0,0.09) !important;
}
.ex-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.1rem 0 0.5rem 0;
border-bottom: 1px solid #f0ede8;
margin-bottom: 0.6rem;
}
.ex-card-cols {
display: flex;
gap: 1.25rem;
}
.ex-col {
flex: 1;
min-width: 0;
padding-right: 0.5rem;
}
.ex-col + .ex-col {
border-left: 1px solid #f0f0f0;
padding-left: 1rem;
padding-right: 0;
}
.ex-label {
font-size: 0.65rem;
font-weight: 600;
letter-spacing: 0.09em;
text-transform: uppercase;
color: #aaa;
margin-bottom: 0.2rem;
}
.ex-text {
font-size: 0.95rem;
line-height: 1.6;
color: #1a1a1a;
margin-bottom: 0;
}
.ex-scores { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.badge {
font-size: 0.7rem;
font-weight: 500;
padding: 0.15rem 0.55rem;
border-radius: 999px;
background: #f3f3f3;
color: #555;
border: 1px solid #e8e8e8;
}
.badge-bad { background: #fff1f1; color: #c0392b; border-color: #fad7d7; }
.badge-ok { background: #fff8ed; color: #b07d1a; border-color: #f5e0b0; }
.badge-good { background: #f0faf3; color: #1e7e44; border-color: #c3e8cf; }
.ex-filename { font-family: monospace; font-size: 0.65rem; color: #bbb; margin-top: 0.4rem; }
/* ββ Dialog ββ */
[data-testid="stDialog"] [data-testid="stVerticalBlock"] { gap: 0.5rem; }
.zoom-ref {
background: #f5f3ff;
border: 1px solid #ddd6fe;
border-left: 4px solid #7c6ff7;
border-radius: 8px;
padding: 0.9rem 1rem;
margin-bottom: 0.75rem;
}
.zoom-ref .ex-label { color: #7c6ff7; margin-bottom: 0.2rem; }
.zoom-ref .ex-text { font-size: 1rem; font-weight: 500; color: #1a1a1a; margin-bottom: 0; }
.zoom-row {
background: #fafafa;
border: 1px solid #ebebeb;
border-radius: 8px;
padding: 0.75rem 1rem;
margin-bottom: 0.4rem;
}
.zoom-row .ex-label { margin-bottom: 0.1rem; }
.zoom-row .ex-text { margin-bottom: 0; font-size: 0.9rem; }
hr { border: none; border-top: 1px solid #e8e8e8; margin: 0.75rem 0; }
</style>
"""
def wer_badge(w: float, label: str = "WER") -> str:
cls = "badge-good" if w < 0.3 else ("badge-ok" if w < 0.7 else "badge-bad")
return f'<span class="badge {cls}">{label} {w:.2f}</span>'
def cer_badge(c: float, label: str = "CER") -> str:
cls = "badge-good" if c < 0.15 else ("badge-ok" if c < 0.4 else "badge-bad")
return f'<span class="badge {cls}">{label} {c:.2f}</span>'
_COLORS = {
"correct": ("#1e7e44", "#edfaf2"),
"close": ("#916a00", "#fff8e6"),
"wrong": ("#b91c1c", "#fff1f1"),
"insert": ("#b91c1c", "#ffeaea"),
}
def _get_slots(ref: str, pred: str) -> list[tuple]:
"""Return list of (ref_word, pred_word, kind) alignment slots."""
ref_words = str(ref).split()
pred_words = str(pred).split()
slots = []
for op, i1, i2, j1, j2 in difflib.SequenceMatcher(None, ref_words, pred_words, autojunk=False).get_opcodes():
if op == "equal":
for rw, pw in zip(ref_words[i1:i2], pred_words[j1:j2]):
slots.append((rw, pw, "correct"))
elif op == "replace":
r_chunk, p_chunk = ref_words[i1:i2], pred_words[j1:j2]
for rw, pw in zip(r_chunk, p_chunk):
sim = difflib.SequenceMatcher(None, rw, pw).ratio()
slots.append((rw, pw, "close" if sim >= 0.6 else "wrong"))
for w in r_chunk[len(p_chunk):]:
slots.append((w, "", "wrong"))
for w in p_chunk[len(r_chunk):]:
slots.append(("", w, "insert"))
elif op == "delete":
for w in ref_words[i1:i2]:
slots.append((w, "", "wrong"))
elif op == "insert":
for w in pred_words[j1:j2]:
slots.append(("", w, "insert"))
return slots
def _word_html(w: str, kind: str, is_ref: bool, highlight: bool) -> str:
if not w:
return '<span style="opacity:0.22">Β·</span>' if (highlight and not is_ref) else ""
esc = html_lib.escape(w)
if not highlight or is_ref:
return esc
color, bg = _COLORS[kind]
extra = ";text-decoration:underline dotted" if kind == "insert" else ""
return f'<span style="border-radius:3px;padding:1px 3px;color:{color};background:{bg}{extra}">{esc}</span>'
def render_aligned_cols(ref: str, pred: str, highlight: bool) -> str:
"""Two-column layout where each segment row covers one alignment run.
Segments break at equalβerror transitions (and every MAX_EQUAL words within
a long equal run) so both columns wrap at the same boundaries.
"""
MAX_EQUAL = 8
slots = _get_slots(ref, pred)
# Group slots into segments
segs: list[list[tuple]] = []
cur: list[tuple] = []
cur_eq: bool | None = None
for slot in slots:
is_eq = slot[2] == "correct"
if cur_eq is not None and (is_eq != cur_eq or (is_eq and len(cur) >= MAX_EQUAL)):
segs.append(cur)
cur = []
cur.append(slot)
cur_eq = is_eq
if cur:
segs.append(cur)
rows = []
for seg in segs:
ref_parts = [_word_html(rw, k, True, highlight) for rw, pw, k in seg]
pred_parts = [_word_html(pw, k, False, highlight) for rw, pw, k in seg]
ref_html = " ".join(p for p in ref_parts if p)
pred_html = " ".join(p for p in pred_parts if p)
if not ref_html and not pred_html:
continue
rows.append(
f'<div class="ex-card-cols" style="margin-bottom:0.15rem;align-items:baseline">'
f'<div class="ex-col"><span class="ex-text" style="margin:0">{ref_html}</span></div>'
f'<div class="ex-col"><span class="ex-text" style="margin:0">{pred_html}</span></div>'
f'</div>'
)
return "\n".join(rows)
def render_flat_cols(ref: str, pred: str, highlight: bool) -> str:
"""Plain side-by-side columns β optionally with word colours on prediction only."""
ref_html = html_lib.escape(str(ref))
if highlight:
slots = _get_slots(ref, pred)
pred_html = " ".join(_word_html(pw, k, False, True) for rw, pw, k in slots if pw)
else:
pred_html = html_lib.escape(str(pred))
return (
'<div class="ex-card-cols">'
f'<div class="ex-col"><span class="ex-text">{ref_html}</span></div>'
f'<div class="ex-col"><span class="ex-text">{pred_html}</span></div>'
'</div>'
)
def zoom_pred_html(ref: str, pred: str, highlight: bool) -> str:
"""Flat coloured prediction text for the zoom dialog."""
if not highlight:
return f'<div class="ex-text">{html_lib.escape(str(pred))}</div>'
parts = []
for _, pw, kind in _get_slots(ref, pred):
parts.append(_word_html(pw, kind, False, True))
return f'<div class="ex-text">{" ".join(p for p in parts if p)}</div>'
def parse_result_files(results_dir: str) -> list[dict]:
entries = []
if not os.path.isdir(results_dir):
return entries
for fname in sorted(os.listdir(results_dir)):
m = _FNAME_RE.match(fname)
if m:
entries.append({
"model": m.group(1),
"dataset": m.group(2),
"split": m.group(3),
"decode": m.group(4),
"path": os.path.join(results_dir, fname),
})
return entries
def load_all_dfs(entries: list[dict]) -> dict[tuple, pd.DataFrame]:
"""Load every result CSV into a dict keyed by (model, dataset, split, decode)."""
dfs = {}
for e in entries:
df = pd.read_csv(e["path"])
df["path"] = df["path"].apply(resolve_audio_path)
dfs[(e["model"], e["dataset"], e["split"], e["decode"])] = df
return dfs
_APP_DIR = os.path.dirname(os.path.abspath(__file__))
def get_results_dir() -> str:
return os.path.join(_APP_DIR, "results")
def resolve_audio_path(path: str) -> str:
"""Return an absolute path, resolving relative paths against the app directory."""
if os.path.isabs(path):
return path
return os.path.join(_APP_DIR, path)
# ββ HF dataset audio fallback ββββββββββββββββββββββββββββββββββββββββββββββ
# Maps the top-level folder name (as it appears in CSV paths) to the HF repo.
# Strip the folder prefix to get the path inside the repo.
_HF_AUDIO_DATASETS: dict[str, str] = {
"audio_chunks": "clb-benin/clb_data",
"fongbe_speech_audio_files": "clb-benin/fongbe-data",
}
def _hf_token() -> str | None:
"""Return HF token from Streamlit secrets or HF_TOKEN env var, or None."""
try:
return st.secrets.get("HF_TOKEN") # type: ignore[attr-defined]
except Exception:
pass
return os.environ.get("HF_TOKEN")
@st.cache_data(show_spinner=False)
def get_audio_bytes(audio_path: str) -> bytes | None:
"""Load audio bytes from a local file; fall back to HF dataset if not found."""
if os.path.isfile(audio_path):
with open(audio_path, "rb") as f:
return f.read()
# Derive path relative to the app dir so we can match the HF mapping.
try:
rel = os.path.relpath(audio_path, _APP_DIR)
except ValueError:
return None
parts = Path(rel).parts # e.g. ("audio_chunks", "subfolder", "chunk_0000.wav")
if parts and parts[0] in _HF_AUDIO_DATASETS:
repo_id = _HF_AUDIO_DATASETS[parts[0]]
hf_file = "/".join(parts[1:]) # strip the local top-level folder
try:
local = hf_hub_download(
repo_id=repo_id,
filename=hf_file,
repo_type="dataset",
token=_hf_token(),
)
with open(local, "rb") as f:
return f.read()
except Exception:
pass
return None
# ββ Dialog for zoomed example ββββββββββββββββββββββββββββββββββββββββββββββ
@st.dialog("Example detail", width="large")
def show_example_detail(audio_path: str, all_dfs: dict, highlight: bool):
audio_bytes = get_audio_bytes(audio_path)
if audio_bytes:
st.audio(audio_bytes, format="audio/wav")
st.caption(os.path.join(os.path.basename(os.path.dirname(audio_path)), os.path.basename(audio_path)))
st.markdown("<hr>", unsafe_allow_html=True)
ref_text = None
ref_shown = False
for (model, dataset, split, decode), df in all_dfs.items():
match = df[df["path"] == audio_path]
if match.empty:
continue
row = match.iloc[0]
if not ref_shown:
ref_text = str(row["ref"])
st.markdown(
f'<div class="zoom-ref">'
f'<div class="ex-label">Reference</div>'
f'<div class="ex-text">{html_lib.escape(ref_text)}</div>'
f'</div>',
unsafe_allow_html=True,
)
ref_shown = True
pred_block = zoom_pred_html(ref_text or "", str(row["pred"]), highlight)
st.markdown(
f'<div class="zoom-row">'
f'<div class="ex-label">{model} Β· {dataset} Β· {split} Β· {decode}</div>'
f'{pred_block}'
f'<div class="ex-scores">{wer_badge(row["wer"])}{cer_badge(row["cer"])}</div>'
f'</div>',
unsafe_allow_html=True,
)
@st.dialog("Normalized text", width="large")
def show_normalized_detail(ref_norm: str, pred_norm: str, wer_n: float, cer_n: float, hl: bool):
st.markdown(
f'<div class="ex-scores" style="margin-bottom:0.75rem">'
f'{wer_badge(wer_n, "WER~")}{cer_badge(cer_n, "CER~")}'
f'</div>',
unsafe_allow_html=True,
)
st.markdown("<hr>", unsafe_allow_html=True)
st.markdown(
f'<div class="zoom-ref">'
f'<div class="ex-label">Reference (normalized)</div>'
f'<div class="ex-text">{html_lib.escape(ref_norm)}</div>'
f'</div>',
unsafe_allow_html=True,
)
pred_block = zoom_pred_html(ref_norm, pred_norm, hl)
st.markdown(
f'<div class="zoom-row">'
f'<div class="ex-label">Prediction (normalized)</div>'
f'{pred_block}'
f'</div>',
unsafe_allow_html=True,
)
# ββ App ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.set_page_config(page_title="MMS Evaluation Inspector", layout="wide")
st.markdown(CSS, unsafe_allow_html=True)
check_password()
results_dir = get_results_dir()
entries = parse_result_files(results_dir)
if not entries:
st.error(f"No evaluation CSVs found in `{results_dir}`. Run `evaluate_mms_model.py` first.")
st.stop()
all_dfs = load_all_dfs(entries)
models = sorted(set(e["model"] for e in entries))
datasets = sorted(set(e["dataset"] for e in entries))
splits = sorted(set(e["split"] for e in entries))
decodes = sorted(set(e["decode"] for e in entries))
has_norm = any("wer_normalized" in df.columns for df in all_dfs.values())
# ββ Sidebar ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
with st.sidebar:
st.markdown("### Run")
sel_model = st.selectbox("Model", models)
sel_dataset = st.selectbox("Dataset", datasets)
sel_split = st.selectbox("Split", splits)
sel_decode = st.selectbox("Decoding", decodes)
st.markdown("---")
st.markdown("### Display")
sort_opts = ["original order", "WER β", "WER β", "CER β", "CER β"]
if has_norm:
sort_opts += ["WER~ β", "WER~ β", "CER~ β", "CER~ β"]
sort_by = st.selectbox("Sort by", sort_opts)
max_examples = st.slider("Examples", min_value=5, max_value=500, value=50, step=5)
# ββ Find file ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
key = (sel_model, sel_dataset, sel_split, sel_decode)
df = all_dfs.get(key)
if df is None:
st.warning("No results file found for this combination.")
st.stop()
# ββ Header βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.markdown("## MMS Evaluation")
st.markdown(
f"<span style='font-size:0.8rem;color:#aaa'>"
f"{sel_model} Β· {sel_dataset} Β· {sel_split} Β· {sel_decode}"
f"</span>",
unsafe_allow_html=True,
)
st.markdown("<hr>", unsafe_allow_html=True)
if has_norm:
col1, col2, col3, col4, col5 = st.columns(5)
col1.metric("Examples", len(df))
col2.metric("Avg WER", f"{df['wer'].mean():.3f}")
col3.metric("Avg CER", f"{df['cer'].mean():.3f}")
col4.metric("Avg WER~", f"{df['wer_normalized'].mean():.3f}")
col5.metric("Avg CER~", f"{df['cer_normalized'].mean():.3f}")
else:
col1, col2, col3 = st.columns(3)
col1.metric("Examples", len(df))
col2.metric("Avg WER", f"{df['wer'].mean():.3f}")
col3.metric("Avg CER", f"{df['cer'].mean():.3f}")
st.markdown("<hr>", unsafe_allow_html=True)
# ββ Sort βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
_sort_map = {
"WER β": ("wer", True), "WER β": ("wer", False),
"CER β": ("cer", True), "CER β": ("cer", False),
"WER~ β": ("wer_normalized", True), "WER~ β": ("wer_normalized", False),
"CER~ β": ("cer_normalized", True), "CER~ β": ("cer_normalized", False),
}
if sort_by in _sort_map:
col, asc = _sort_map[sort_by]
df = df.sort_values(col, ascending=asc).reset_index(drop=True)
# ββ Beam results for inline comparison ββββββββββββββββββββββββββββββββββββ
beam_df = (
all_dfs.get((sel_model, sel_dataset, sel_split, "beam"))
if sel_decode != "beam" else None
)
# ββ Examples βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
for i, row in df.head(max_examples).iterrows():
audio_path = row["path"]
with st.container(border=True):
# Header: filename + badges
norm_badges = (
f' {wer_badge(row["wer_normalized"], "WER~")}{cer_badge(row["cer_normalized"], "CER~")}'
if has_norm else ""
)
st.markdown(
f'<div class="ex-header">'
f'<span class="ex-filename" style="font-size:0.72rem;color:#999">{os.path.join(os.path.basename(os.path.dirname(audio_path)), os.path.basename(audio_path))}</span>'
f'<div class="ex-scores" style="margin:0">{wer_badge(row["wer"])}{cer_badge(row["cer"])}{norm_badges}</div>'
f'</div>',
unsafe_allow_html=True,
)
left, right = st.columns([1, 2], gap="large")
with left:
audio_bytes = get_audio_bytes(audio_path)
if audio_bytes:
st.audio(audio_bytes, format="audio/wav")
else:
st.caption("audio not found")
tc1, tc2 = st.columns(2)
hl = tc1.toggle("Highlight", key=f"hl_{i}", value=False)
al = tc2.toggle("Align", key=f"al_{i}", value=False)
if st.button("Compare all runs", key=f"zoom_{i}", use_container_width=True):
show_example_detail(audio_path, all_dfs, hl)
if has_norm and st.button("Normalized view", key=f"norm_{i}", use_container_width=True):
show_normalized_detail(
str(row["ref_norm"]), str(row["pred_norm"]),
float(row["wer_normalized"]), float(row["cer_normalized"]),
hl,
)
with right:
labels = (
'<div class="ex-card-cols" style="margin-bottom:0.25rem">'
'<div class="ex-col"><div class="ex-label">Reference</div></div>'
'<div class="ex-col"><div class="ex-label">Prediction</div></div>'
'</div>'
)
body = render_aligned_cols(str(row['ref']), str(row['pred']), hl) if al \
else render_flat_cols(str(row['ref']), str(row['pred']), hl)
st.markdown(f'{labels}{body}', unsafe_allow_html=True)
if beam_df is not None:
beam_match = beam_df[beam_df["path"] == audio_path]
if not beam_match.empty:
beam_row = beam_match.iloc[0]
beam_pred_block = zoom_pred_html(str(row["ref"]), str(beam_row["pred"]), hl)
beam_scores = (
f'<div class="ex-scores">'
f'{wer_badge(beam_row["wer"])}{cer_badge(beam_row["cer"])}'
f'</div>'
)
st.markdown(
f'<hr style="margin:0.5rem 0">'
f'<div class="zoom-row">'
f'<div class="ex-label">Beam</div>'
f'{beam_pred_block}'
f'{beam_scores}'
f'</div>',
unsafe_allow_html=True,
)
|