File size: 40,575 Bytes
1c16318 | 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 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 | """
Stage 5 - The GUI.
A Gradio Blocks interface over the four stages. It holds no detection logic: it uploads bytes,
calls pipeline -> detector -> analysis -> embedder, and renders what comes back.
**The interface comes up first, before anything is downloaded.** The user is asked for a Hugging
Face read token, and only then does the app fetch anything - one part at a time, each ticked off as
it finishes. The scanner appears when loading is done; the result tabs appear when a scan is done.
Nothing empty is ever on screen.
That ordering is deliberate. Gemma-2-9B in 4-bit is several gigabytes: loading it before `launch()`
means minutes of blank screen and, on a Space, a container the platform may consider dead. It also
turns a gated-repo refusal into a startup stack trace rather than a sentence in the UI.
Four models, MiMo-7B by default. MiMo is not the most accurate - Gemma-2-9B is, by 0.024 F1 - but
it is the only one of the four that anybody can download, so it is the one the app fetches at
start-up and the one a user with no Hugging Face account can still use. Gemma is gated by Google
and asks for a token; Qwen and Phi are open and load on request. Each entry in the picker states
what it costs you, including Phi-4-mini's, which is that it flags 95% of clean files.
"""
import os
import random
import sys
import threading
import time
from pathlib import Path
import gradio as gr
sys.path.insert(0, str(Path(__file__).resolve().parent))
import analysis
import detector
import embedder
import pipeline
# Bumped whenever this file changes in a way a running notebook would care about, so a stale
# import is visible in the bootstrap output instead of surfacing as a missing attribute later.
__version__ = "5.1-arrows-with-card"
DEFAULT_MODEL = detector.ACTIVE # "mimo" - ungated, so it can be fetched before any token
# Which model the loaded session is using. Written by connect(), read by analyse(), so a scan can
# never run on a different model from the one whose name is on the screen.
READY = {"ok": False, "model": DEFAULT_MODEL}
# ZeroGPU: the decorator only exists inside a Space. Everywhere else this is a no-op, so the same
# file runs in a notebook without a Spaces install.
ON_ZEROGPU = False
try:
import spaces
ON_ZEROGPU = True
except Exception:
class _NoSpaces:
@staticmethod
def GPU(*a, **kw):
def wrap(fn):
return fn
return wrap
spaces = _NoSpaces()
GPU_SLICE = 8 # windows per ZeroGPU allocation
GPU_DURATION = 120
# Per-window cost now lives on each ModelSpec: MiMo is 2.6x faster than Gemma, so one estimate
# for all four would be wrong by minutes on a long document.
MAX_NEIGHBOURS = 5 # Part A's precision@5 is the only figure measured, so 5 is the cap
CSS = """
/* Centre everything, at a width that keeps prose readable. */
.gradio-container {max-width: 1000px !important; margin: 0 auto !important;}
.gradio-container .prose {max-width: none !important;}
#hero {text-align: center; margin: 0.4rem auto 1rem auto;}
#hero h1 {margin-bottom: 0.3rem; font-size: 2rem;}
#hero p {opacity: 0.75; margin: 0;}
/* The start panel is a narrow card, centred. */
#setup {max-width: 560px; margin: 0 auto 0.5rem auto; padding: 1.1rem 1.3rem;
border-radius: 14px;}
#setup h3 {margin-top: 0;}
#steps {max-width: 560px; margin: 0.6rem auto; font-size: 0.94rem; line-height: 1.9;}
#steps p {margin: 0.15rem 0;}
/* The rotating note shown while something loads: a card that sits in front of the page, not a
tint behind it. The colours come from the theme's
own variables so it is opaque in both light and dark mode - the earlier rgba() tint let the
background show through and the text read as if it were behind everything. */
.waiting {max-width: 560px; margin: 1rem auto; padding: 1rem 1.15rem 1.1rem 1.15rem;
border-radius: 14px; position: relative; z-index: 5;
background: var(--block-background-fill, #ffffff);
border: 1px solid var(--border-color-primary, rgba(128,128,128,0.35));
box-shadow: 0 6px 20px rgba(0,0,0,0.22);}
.waiting p {margin: 0.35rem 0; font-size: 0.95rem; line-height: 1.6;}
/* The first line is the label - "While you're waiting" - and is set apart from the paragraph
under it by a rule, so the eye finds the family name rather than a wall of text. */
.waiting p:first-child {margin: 0; padding-bottom: 0.5rem; margin-bottom: 0.6rem;
border-bottom: 1px solid var(--border-color-primary,
rgba(128,128,128,0.25));
font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
opacity: 0.75;}
.waiting p:first-child strong {font-weight: 700;}
.waiting strong {font-weight: 700;}
/* The one progress bar in this app. A class, not an id, because both phases - loading and
scanning - draw their own, and Gradio's built-in progress is switched off everywhere
(show_progress="hidden") so that this is the only bar a user ever sees. Plain divs rather than
a component: it has to be redrawn from inside a generator, and markup is the only thing a
generator can repaint. */
.pbar {max-width: 560px; margin: 0.7rem auto 0.2rem auto;}
.pbar .track {height: 8px; border-radius: 999px; overflow: hidden;
background: var(--border-color-primary, rgba(128,128,128,0.25));}
.pbar .fill {height: 100%; border-radius: 999px; transition: width 0.35s ease;
background: linear-gradient(90deg, #f97316, #fb923c);}
.pbar .label {display: flex; justify-content: space-between; gap: 1rem; margin-top: 0.45rem;
font-size: 0.88rem; opacity: 0.8;}
.pbar .label .pct {font-variant-numeric: tabular-nums; opacity: 0.7;}
/* The arrows under a waiting card. Kept small, centred and quiet: they are an offer, not the
thing to look at, and the card auto-advances perfectly well if they are never touched. */
.wnav {max-width: 560px; margin: -0.4rem auto 0.8rem auto !important; justify-content: center;
gap: 0.5rem;}
.wnav button {flex: 0 0 auto !important; border-radius: 999px !important; font-size: 1.1rem;
line-height: 1; padding: 0.25rem 0.9rem !important; opacity: 0.7;}
.wnav button:hover {opacity: 1;}
/* Tabs as tabs: a resting row of shapes with the active one lifted out of the panel, rather than
three words with one underlined. The panel below joins the active tab, so the two read as one
surface. */
.gradio-container .tab-nav {border-bottom: 1px solid var(--border-color-primary,
rgba(128,128,128,0.3)) !important;
gap: 0.25rem; padding: 0 0.2rem;}
.gradio-container .tab-nav button {border: 1px solid transparent !important;
border-bottom: none !important;
border-radius: 10px 10px 0 0 !important;
padding: 0.55rem 1.05rem !important;
font-size: 0.95rem; font-weight: 500; opacity: 0.72;
margin-bottom: -1px;
transition: background 0.15s ease, opacity 0.15s ease;}
.gradio-container .tab-nav button:hover {opacity: 1;
background: var(--background-fill-secondary,
rgba(128,128,128,0.10)) !important;}
.gradio-container .tab-nav button.selected {opacity: 1; font-weight: 600;
background: var(--block-background-fill, rgba(128,128,128,0.16)) !important;
border-color: var(--border-color-primary, rgba(128,128,128,0.3)) !important;
box-shadow: inset 0 2px 0 0 #f97316;}
.gradio-container .tabitem {border: 1px solid var(--border-color-primary,
rgba(128,128,128,0.3)) !important;
border-top: none !important; border-radius: 0 0 12px 12px !important;
padding: 1rem 1.1rem !important;}
#verdict {text-align: center; margin: 0.8rem 0 0.2rem 0;}
#verdict h2 {margin: 0.2rem 0;}
#cost {font-size: 0.92rem; opacity: 0.85;}
/* Result tables: a quiet header row and hairline rules, so a five-column table reads as data
rather than as a grid of boxes. */
#report table th {background: var(--background-fill-secondary, rgba(128,128,128,0.10));
font-weight: 600; font-size: 0.9rem; letter-spacing: 0.02em;}
#report table, #report table td, #report table th {
border-color: var(--border-color-primary, rgba(128,128,128,0.25)) !important;}
#report h2 {font-size: 1.35rem; margin-top: 0.2rem;}
#report h3 {font-size: 1.1rem;}
#report hr {border: none; border-top: 1px solid var(--border-color-primary,
rgba(128,128,128,0.25)); margin: 1.4rem 0;}
/* Wrap everything: evidence strings and file ids are long and must not force a sideways scroll. */
#report, #report * {overflow-wrap: anywhere; word-break: normal;}
#report table {width: 100%; table-layout: fixed;}
#report td, #report th {white-space: normal !important; overflow-wrap: anywhere;
vertical-align: top; padding: 0.4rem 0.55rem;}
#report code {overflow-wrap: anywhere; white-space: pre-wrap;}
.gradio-container table td, .gradio-container table th {white-space: normal !important;
overflow-wrap: anywhere;}
"""
# Gradio 6 moved `css` from the Blocks constructor to launch(); 4 and 5 want it on Blocks. Colab
# and Spaces do not run the same version, so pass it wherever this install expects it.
GRADIO_MAJOR = int(gr.__version__.split(".")[0])
_BLOCKS_KW = {} if GRADIO_MAJOR >= 6 else {"css": CSS}
_LAUNCH_KW = {"css": CSS} if GRADIO_MAJOR >= 6 else {}
# --------------------------------------------------------------------------------------------
# Start-up: one part at a time
# --------------------------------------------------------------------------------------------
def _steps(model: str) -> list:
"""
The checklist for one model. The first step exists only for a gated one.
Showing "Check the token" while MiMo loads would be a lie about what the app is doing, and
would suggest a token is needed when the whole point of the default is that none is.
"""
spec = detector.DETECTORS[model]
token_step = ["Check the token"] if spec.gated else []
return token_step + ["Download the embedding index",
f"Download {spec.label.split(' - ')[0]}",
"Quantise to 4-bit"]
def _checklist(model: str, done: int, current: str = "", failed: str = "") -> str:
"""The step list as it stands: finished ticked, current running, the rest waiting."""
lines = []
for i, name in enumerate(_steps(model)):
if failed and i == done:
lines.append(f"✗ **{name}** - {failed}")
elif i < done:
lines.append(f"✓ {name}")
elif i == done and current:
lines.append(f"● **{name}** - {current}")
else:
lines.append(f"<span style='opacity:0.45'>○ {name}</span>")
return "\n\n".join(lines)
FACT_SECONDS = 20.0 # how long one family stays up when nobody touches the arrows
FACT_POLL = 0.4 # how often a waiting loop re-reads the rotation
def new_rotation():
"""
A fresh reading order, shuffled, starting at the first entry.
Re-made at the start of every load and every scan, so two runs in a row do not open on the
same family. A shuffled list rather than an independent random draw each time: drawing
independently repeats families and can leave some never shown at all.
"""
order = list(detector.FAMILY_NOTES)
random.shuffle(order)
return {"order": order, "i": 0, "touched": time.monotonic()}
def _ensure(rot):
"""Rotations live in gr.State, which starts as whatever the first caller finds."""
if not rot:
rot.update(new_rotation())
return rot
def rotation_note(rot, advance: bool = True) -> str:
"""
The note to show now, advancing only if nobody has pressed an arrow for FACT_SECONDS.
The clock is reset by the arrow handlers, so pressing one buys another full interval to read
on - an auto-advance two seconds after a deliberate click would be the app arguing with the
person using it.
"""
_ensure(rot)
if advance and time.monotonic() - rot["touched"] >= FACT_SECONDS:
rot["i"] = (rot["i"] + 1) % len(rot["order"])
rot["touched"] = time.monotonic()
return _waiting_note(rot)
def step_rotation(rot, delta: int):
"""An arrow press: move by hand, and restart the idle clock."""
_ensure(rot)
rot["i"] = (rot["i"] + delta) % len(rot["order"])
rot["touched"] = time.monotonic()
return _panel(_waiting_note(rot))
def _family_title(family: str) -> str:
"""
The family name as a person would write it.
`.title()` on the registry key gives "Ssrf" and "Llm Prompt Injection" - acronyms are the one
thing it cannot do, and these keys are mostly acronyms, so the exceptions are spelled out.
"""
special = {
"ssrf": "SSRF - server-side request forgery",
"llm_prompt_injection": "LLM prompt injection",
"xfa_acroform_injection": "XFA / AcroForm injection",
"dde_template_injection": "DDE template injection",
"uri_redirect_phishing": "URI redirect phishing",
"cross_site_scripting": "Cross-site scripting (XSS)",
}
return special.get(family, family.replace("_", " ").capitalize())
def _waiting_note(rot) -> str:
"""
One family, as three paragraphs: label, name, explanation.
Split into paragraphs rather than one block because the CSS styles the first one as the card's
heading; a single paragraph would give a wall of text with a bold phrase buried in it. The
counter tells the reader the arrows lead somewhere and how far round they are.
"""
family = rot["order"][rot["i"]]
counter = f"{rot['i'] + 1} of {len(rot['order'])}"
return (f"**While you're waiting** · {counter}\n\n"
f"**{_family_title(family)}**\n\n"
f"{detector.FAMILY_NOTES[family]}")
def _nav(text: str):
"""
The arrow row that belongs to a waiting card: on screen exactly when the card is.
Arrows with nothing to page through are a control that does nothing, which is worse than no
control at all - so they are tied to the same string the card is.
"""
return gr.update(visible=bool(text))
def _panel(text: str):
"""
A card that is on screen only when it has something to say.
An empty Markdown still draws its padding and border, so without this the loading screen
carries an empty box between every note.
"""
return gr.update(value=text, visible=bool(text))
def _while_working(work, render, rot):
"""
Run `work()` on a thread and keep the screen talking while it runs.
A generator delegated to with `yield from`: it yields whatever `render(note)` builds - a full
set of UI updates - and returns whatever `work()` returned. Downloading six gigabytes is one
blocking call that cannot report from inside itself, so the only way to say anything during it
is to put it on another thread and watch.
It re-reads the rotation every FACT_POLL and yields only when the text has actually changed,
which covers both ways the note can move: the idle timer running out, and the reader pressing
an arrow - the arrow handler mutates the same rotation object this loop is reading.
An exception raised on the thread is re-raised here, so the caller's existing `except` still
sees a failed download as a failed download.
"""
box = {}
def runner():
try:
box["value"] = work()
except BaseException as e: # re-raised below, on the generator's own stack
box["error"] = e
thread = threading.Thread(target=runner, daemon=True)
thread.start()
shown = rotation_note(rot, advance=False)
yield render(shown)
while thread.is_alive():
current = rotation_note(rot)
if current != shown:
shown = current
yield render(shown)
time.sleep(FACT_POLL)
thread.join()
if "error" in box:
raise box["error"]
return box.get("value")
def preflight(model: str) -> tuple:
"""
Is the token real, and does this account have this model? Returns (status, message).
Three answers, not two, because a user's next move differs in each: `ok`, `no_access` (the
token is fine, the licence has not been accepted) and `bad_token` (the string is not a token).
Collapsing the middle case into "it failed" is the commonest mistake here - a perfectly good
token on an unaccepted licence then reads as a typo, and the user retypes it forever.
Two wrong ways to ask, both of which pass when they should not:
* `model_info` - Gemma is `gated=manual`, which gates the *weights* and leaves the model card
and metadata public, so this succeeds for anybody, garbage token included.
* `hf_hub_download("config.json")` - answers from the local cache once the file has been
fetched before, so it keeps saying yes after access is revoked.
`auth_check` asks the one question that matters and never answers from cache.
"""
spec = detector.DETECTORS[model]
if not spec.gated:
return "ok", "no token needed"
token = detector.hf_token()
if not token:
return "bad_token", "no token given, and none found in this runtime"
# Is the token itself real? Asked separately so a refusal can be attributed to the right
# thing: whoami fails on a bad string, auth_check fails on a good string without the licence.
try:
from huggingface_hub import HfApi
HfApi().whoami(token=token)
except Exception as e:
return "bad_token", f"{type(e).__name__}: {e}"
try:
try:
from huggingface_hub import auth_check
auth_check(spec.repo, token=token)
except ImportError: # older hub: same question, asked by hand
from huggingface_hub import get_hf_file_metadata, hf_hub_url
get_hf_file_metadata(hf_hub_url(spec.repo, "config.json"), token=token)
return "ok", "accepted"
except Exception as e:
name = type(e).__name__
if "Gated" in name or "Repository" in name or "401" in str(e) or "403" in str(e):
return "no_access", detector.gate_url(model)
return "error", f"{name}: {e}"
def token_hint() -> str:
if detector.hf_token():
return ("A token was found in this runtime. Leave the box empty and press **Send token** "
"to use it.")
return ("Paste a **read** token from huggingface.co/settings/tokens. It is used only to "
"download the model, and is never stored.")
# --------------------------------------------------------------------------------------------
# The default model, fetched at start-up
# --------------------------------------------------------------------------------------------
_PREFETCH = {"thread": None}
def prefetch_default():
"""
Start pulling MiMo into the cache as the app boots, on a background thread.
On a thread rather than inline: the interface has to be answering requests within seconds or a
Space is considered dead, and a user who intends to pick Gemma anyway should not wait behind a
download they will not use. By the time anyone has read the page and pressed a button the
fetch is usually finished, and `connect()` then ticks the download step off immediately.
Only the default is prefetched, and only because it is ungated - there is nothing to prefetch
for Gemma until a token exists, and prefetching all four would pull twenty-odd gigabytes for
three models nobody asked for.
"""
if _PREFETCH["thread"] is not None:
return _PREFETCH["thread"]
def work():
try:
from huggingface_hub import snapshot_download
snapshot_download(detector.DETECTORS[DEFAULT_MODEL].repo,
allow_patterns=["*.json", "*.safetensors", "*.model", "tokenizer*"])
except Exception as e: # a cold cache at Start time, not a crash
print(f"[prefetch] {type(e).__name__}: {e}")
thread = threading.Thread(target=work, daemon=True)
thread.start()
_PREFETCH["thread"] = thread
return thread
def connect(model: str, token: str, rot):
"""
Everything between "the page loaded" and "you can scan a PDF", one part at a time.
A generator: each part reports before it starts and ticks off when it finishes, so the bar
advances four times rather than sitting still through a six-gigabyte download.
Yields (checklist, setup panel, scanner panel, waiting note, token verdict, progress bar).
No `gr.Progress`: Gradio draws its own bar over every output component of an event, which on
a five-output event meant the same percentage rendered several times down the page. One bar,
drawn by `_bar`, with Gradio's own switched off at the event (`show_progress="hidden"`).
"""
steps = _steps(model)
spec = detector.DETECTORS[model]
rot.update(new_rotation()) # a fresh reading order for every load
def state(done, current="", failed="", waiting="", verdict=""):
finished = done >= len(steps)
return (_checklist(model, done, current, failed),
gr.update(visible=not finished),
gr.update(visible=finished),
_panel(waiting), # each card is hidden when empty, so the
_panel(verdict), # loading screen never shows a blank box
"" if finished else _bar(done, len(steps), steps[done]),
_nav(waiting))
READY["ok"], READY["model"] = False, model
# 1 - the token, for a gated model only -------------------------------------------------
step = 0
if spec.gated:
token = (token or "").strip()
if token:
os.environ["HF_TOKEN"] = token # detector.hf_token() reads the environment first
yield state(0, "asking Hugging Face")
status, detail = preflight(model)
if status == "no_access":
yield state(0, failed="the licence has not been accepted",
verdict=(f"### 🔒 Access not granted\n\nYour token works, but "
f"this account has not been given {spec.label.split(' - ')[0]}. Accept "
f"the licence here, signed in as the same account, then press "
f"**Send token** again:\n\nURL: {detail}"))
return
if status == "bad_token":
yield state(0, failed="token refused",
verdict=("### ❌ The Hugging Face token was not approved\n\n"
"Check it at huggingface.co/settings/tokens and try again, or "
"pick a different model - MiMo, Qwen and Phi need no token."))
return
if status != "ok":
yield state(0, failed=detail,
verdict=f"### ⚠️ Could not reach Hugging Face\n\n`{detail}`")
return
step = 1
yield state(1, verdict=f"### ✅ Token approved, loading {spec.label.split(' - ')[0]}…")
# 2 - the embedding index ----------------------------------------------------------------
keep = f"### ✅ Token approved, loading {spec.label.split(' - ')[0]}…" if spec.gated else ""
yield state(step, "5 MB", verdict=keep)
try:
idx = yield from _while_working(
embedder.load_index, lambda note: state(step, "5 MB", waiting=note, verdict=keep), rot)
n = idx["matrix"].shape[0]
except Exception as e:
yield state(step, failed=f"{type(e).__name__}: {e}",
verdict=f"### ⚠️ Could not load the embedding index\n\n`{e}`")
return
# 3 - the weights ------------------------------------------------------------------------
# The long one. Several gigabytes on a cold cache is minutes of nothing happening, which is
# where the twelve families come in - the wait is spent explaining what the model is about to
# look for, rather than on a bar the user cannot read anything into.
#
# For the default model this is usually instant: prefetch_default() has been pulling it since
# the app booted, and snapshot_download returns from cache.
size_note = "about 6 GB, cached after the first run"
yield state(step + 1, size_note, verdict=keep)
def _fetch_weights():
from huggingface_hub import snapshot_download
return snapshot_download(spec.repo, token=detector.hf_token(),
allow_patterns=["*.json", "*.safetensors", "*.model",
"tokenizer*"])
try:
yield from _while_working(
_fetch_weights,
lambda note: state(step + 1, size_note, waiting=note, verdict=keep), rot)
except Exception as e:
yield state(step + 1, failed=f"{type(e).__name__}: {e}",
verdict=f"### ⚠️ Download failed\n\n`{e}`")
return
# 4 - onto the GPU -----------------------------------------------------------------------
if ON_ZEROGPU:
# No GPU exists outside a scan on ZeroGPU, so quantising has to wait for the first one.
yield state(step + 2, "deferred to the first scan (ZeroGPU has no device until then)",
verdict=keep)
time.sleep(0.4)
else:
yield state(step + 2, "loading onto the GPU", verdict=keep)
try:
yield from _while_working(
lambda: detector.load(model),
lambda note: state(step + 2, "loading onto the GPU", waiting=note, verdict=keep),
rot)
except Exception as e:
# detector.load() already explains the two ways this fails - no GPU, or one too
# small - so its message is shown as written rather than wrapped in another guess.
yield state(step + 2, failed=f"{type(e).__name__}",
verdict=f"### ⚠️ The model could not be loaded\n\n{e}")
return
READY["ok"] = True
yield state(len(steps),
verdict=f"### ✅ {spec.label.split(' - ')[0]} is loaded and ready.")
# --------------------------------------------------------------------------------------------
# The scan
# --------------------------------------------------------------------------------------------
@spaces.GPU(duration=GPU_DURATION)
def _scan_slice(windows):
"""One GPU allocation's worth of windows. The only function that touches the GPU."""
return detector.scan(windows, name=READY["model"])
def _bar(done: int, total: int, note: str = "") -> str:
"""
The progress bar, drawn from the section counts rather than from elapsed time.
A time-based bar has to guess, and guesses wrongly on the first run of a document twice the
size of the last one. Sections are the unit of work the scan actually consumes, and their
number is known before the first one starts, so the bar is a measurement.
"""
pct = 100.0 * done / max(total, 1)
label = note or f"Section {min(done + 1, total)} of {total}"
return (f"<div class='pbar'><div class='track'>"
f"<div class='fill' style='width:{pct:.1f}%'></div></div>"
f"<div class='label'><span>{label}</span>"
f"<span class='pct'>{pct:.0f}%</span></div></div>")
def describe(file):
"""What the scan will cost, before committing to it."""
if file is None:
return ""
doc = pipeline.pdf_to_text(Path(file).read_bytes())
n = len(pipeline.window_document(doc["masked"]))
total = n * detector.DETECTORS[READY["model"]].seconds_per_window
unit = f"about {total:.0f} seconds" if total < 90 else f"about {total / 60:.0f} minutes"
note = " \n*Large file - trimmed to its first and last sections.*" if doc["was_truncated"] else ""
return (f"**{doc['chars']:,} characters** in **{n} overlapping sections**. "
f"On a GPU that is {unit}.{note}")
def analyse(file, k, want_neighbours, rot):
"""
Yields (verdict, results visibility, window rows, report, neighbour rows, basis, bar, note).
A generator, not a function, because the bar has to move *during* the scan: the sections are
scanned a slice at a time and the bar is repainted between slices, so a 40-section document
shows forty steps of evidence that it is alive rather than one long freeze.
A scan of a large document is the longer of the two waits - 41 sections is close to four
minutes - so it carries the same rotating notes as the download, under its own bar.
"""
hide = gr.update(visible=False)
rot.update(new_rotation()) # a fresh reading order for every scan
def stop(msg, bar="", note=""):
return msg, hide, [], "", [], "", bar, _panel(note), _nav(note)
if not READY["ok"]:
yield stop("### Press **Start** above first")
return
if file is None:
yield stop("### Choose a PDF, then press **Check this PDF**")
return
t0 = time.time()
yield stop("", _bar(0, 1, "Reading the PDF"), rotation_note(rot))
doc = pipeline.pdf_to_text(Path(file).read_bytes())
windows = pipeline.window_document(doc["masked"])
if not windows:
yield stop("### Nothing readable in this file\n\nIt may be an image-only scan.")
return
total = len(windows)
yield stop("", _bar(0, total), rotation_note(rot))
# One slice at a time in both environments. On ZeroGPU the slice size is forced by the
# allocation; off it, GPU_SLICE happens to equal detector.BATCH, so slicing here costs nothing
# and buys a bar that moves every few seconds instead of once at the end.
findings = []
try:
for i in range(0, total, GPU_SLICE):
findings += _scan_slice(windows[i:i + GPU_SLICE])
done = len(findings)
yield stop("", _bar(done, total), rotation_note(rot))
except Exception as e:
yield stop(f"### Scan failed\n\n`{type(e).__name__}: {e}`")
return
finally:
if ON_ZEROGPU:
detector.release()
yield stop("", _bar(total, total, "Building the report"), rotation_note(rot))
summary = analysis.consolidate(findings, doc, model=READY["model"])
report = analysis.report_markdown(summary)
rows, basis_text = [], ""
if want_neighbours:
yield stop("", _bar(total, total, "Finding similar files"), rotation_note(rot))
try:
nb = embedder.neighbours_for(summary, windows, k=int(k))
rows = embedder.neighbour_rows(nb)
basis_text = f"Compared using {nb['basis']}."
except Exception as e:
basis_text = f"Similar-file lookup unavailable ({type(e).__name__})."
if summary["injected"]:
verdict_text = (f"## 🔴 Something is hidden in this PDF\n\n**{summary['n_regions']}** "
f"affected {'part' if summary['n_regions'] == 1 else 'parts'} · "
f"{summary['n_windows_flagged']} of {summary['n_windows']} sections "
f"flagged · {time.time() - t0:.0f}s")
else:
verdict_text = (f"## 🟢 Nothing suspicious found\n\nAll **{summary['n_windows']}** "
f"sections checked · {time.time() - t0:.0f}s")
# The bar is emptied rather than left full: the verdict below it is now the thing to read.
yield (verdict_text, gr.update(visible=True), analysis.window_rows(findings),
report, rows, basis_text, "", _panel(""), _nav(""))
def on_pick(model: str):
"""
React to the picker: ask for a token only where one can do something.
Returns (what this model costs you, token row, Start button, cleared verdict, checklist).
Gemma replaces Start with Send token rather than showing both, so there is exactly one thing
to press, and the checklist is redrawn because a gated model has a step the others do not.
"""
spec = detector.DETECTORS[model]
return (spec.summary,
gr.update(visible=spec.gated),
gr.update(visible=not spec.gated),
_panel(""),
_checklist(model, 0))
def _lock():
"""Take the button away for the duration of a scan, and say why it is gone."""
return gr.update(interactive=False, value="Checking…")
def _unlock():
return gr.update(interactive=True, value="Check this PDF")
# --------------------------------------------------------------------------------------------
# Interface
# --------------------------------------------------------------------------------------------
with gr.Blocks(title="PDF Injection Detector", **_BLOCKS_KW) as demo:
gr.Markdown(
"# PDF Injection Detector\n"
"Upload a PDF and find out whether something has been hidden inside it - where it is, "
"what kind of thing it is, and the exact text that gave it away.",
elem_id="hero")
# ---- step 1: pick a model, and the things loading it unlocks ---------------------------
with gr.Group(visible=True, elem_id="setup") as setup_panel:
gr.Markdown("### Start")
model_pick = gr.Dropdown(
choices=[(spec.label, key) for key, spec in detector.DETECTORS.items()],
value=DEFAULT_MODEL, label="Detection model")
model_note = gr.Markdown(detector.DETECTORS[DEFAULT_MODEL].summary)
# Shown only for a gated model. For the other three the token box would be a question with
# no answer - there is nothing to authorise - so it is not on screen at all.
with gr.Group(visible=False) as token_row:
token_box = gr.Textbox(label="Hugging Face read token", type="password",
placeholder="hf_...", lines=1)
token_help = gr.Markdown(token_hint())
send_token = gr.Button("Send token", variant="primary", size="lg")
start = gr.Button("Start", variant="primary", size="lg")
token_verdict = gr.Markdown(visible=False, elem_classes=["waiting"])
steps_view = gr.Markdown(_checklist(DEFAULT_MODEL, 0), elem_id="steps")
load_bar = gr.HTML()
waiting_view = gr.Markdown(visible=False, elem_classes=["waiting"])
with gr.Row(elem_classes=["wnav"], visible=False) as load_nav:
load_prev = gr.Button("‹", size="sm", min_width=48)
load_next = gr.Button("›", size="sm", min_width=48)
# ---- step 2: revealed once everything is loaded ---------------------------------------
with gr.Group(visible=False) as scanner:
with gr.Row():
with gr.Column(scale=3):
file = gr.File(label="Your PDF", file_types=[".pdf"], type="filepath")
with gr.Column(scale=2):
want_neighbours = gr.Checkbox(value=True, label="Also show similar known files")
k = gr.Slider(1, MAX_NEIGHBOURS, value=MAX_NEIGHBOURS, step=1,
label="How many similar files")
cost = gr.Markdown(elem_id="cost")
run = gr.Button("Check this PDF", variant="primary", size="lg")
bar = gr.HTML()
scan_note = gr.Markdown(visible=False, elem_classes=["waiting"])
with gr.Row(elem_classes=["wnav"], visible=False) as scan_nav:
scan_prev = gr.Button("‹", size="sm", min_width=48)
scan_next = gr.Button("›", size="sm", min_width=48)
verdict = gr.Markdown(elem_id="verdict")
# ---- step 3: revealed once a scan has produced something to show ------------------
with gr.Group(visible=False) as results:
with gr.Tabs():
with gr.Tab("Report"):
report = gr.Markdown(elem_id="report")
with gr.Tab("Section by section"):
gr.Markdown("Every section of the document, in order, with what the model "
"said about each one.")
windows_table = gr.Dataframe(headers=analysis.WINDOW_COLUMNS, wrap=True)
with gr.Tab("Similar known files"):
gr.Markdown("The closest matches among the 1,100 files this system was "
"tested on. These are the most *similar* files, not a second "
"opinion on the verdict.")
neighbours_table = gr.Dataframe(headers=embedder.NEIGHBOUR_COLUMNS, wrap=True)
basis = gr.Markdown()
# One rotation per browser session, shared by the loading screen and the scan. Both the
# generators and the arrow handlers receive the same dict object, which is what lets an arrow
# press mid-download change what the next yield shows.
rotation = gr.State({})
# show_progress="hidden" on every event: Gradio otherwise draws its own progress bar over each
# output component, which is where the second and third bars in the screenshot came from.
_connect_out = [steps_view, setup_panel, scanner, waiting_view, token_verdict, load_bar,
load_nav]
model_pick.change(on_pick, model_pick,
[model_note, token_row, start, token_verdict, steps_view],
show_progress="hidden")
start.click(connect, [model_pick, token_box, rotation], _connect_out, show_progress="hidden")
send_token.click(connect, [model_pick, token_box, rotation], _connect_out,
show_progress="hidden")
file.change(describe, file, cost, show_progress="hidden")
for button, delta, target in ((load_prev, -1, waiting_view), (load_next, 1, waiting_view),
(scan_prev, -1, scan_note), (scan_next, 1, scan_note)):
button.click(lambda rot, d=delta: step_rotation(rot, d), rotation, target,
queue=False, show_progress="hidden")
# Locked for the duration, unlocked whatever happens. A second press during a scan would queue
# another full pass over the same document on the one GPU this app has, so the button is taken
# away rather than the second request silently ignored - and `.then` still runs after a failed
# scan, so a crash cannot leave the button dead.
(run.click(_lock, None, run, queue=False, show_progress="hidden")
.then(analyse, [file, k, want_neighbours, rotation],
[verdict, results, windows_table, report, neighbours_table, basis, bar,
scan_note, scan_nav], show_progress="hidden")
.then(_unlock, None, run, queue=False, show_progress="hidden"))
def launch(**kw):
"""
Serve immediately, with the default model already on its way.
`prefetch_default()` returns at once - the download runs on a daemon thread - so this is still
the same instant launch, only with MiMo usually cached by the time anyone presses a button.
"""
prefetch_default()
return demo.launch(**{**_LAUNCH_KW, **kw})
if __name__ == "__main__":
prefetch_default()
demo.launch(**_LAUNCH_KW,
server_name="0.0.0.0" if os.environ.get("SPACE_ID") else "127.0.0.1") |