File size: 31,115 Bytes
3601981 8d94c3d 6677ded 8d94c3d 3601981 8d94c3d 3601981 8d94c3d 3601981 6677ded 3601981 6677ded 3601981 a50755a 8d94c3d a50755a 8d94c3d 6677ded 8d94c3d 6677ded 8d94c3d 3601981 6677ded 3601981 05c8a6f 3601981 05c8a6f 3601981 ae25c7c 6677ded ae25c7c 3601981 6677ded 3601981 ae25c7c 3601981 6677ded 3601981 6677ded 3601981 1f8bf98 3601981 61f3df8 3601981 61f3df8 3601981 61f3df8 3601981 61f3df8 3601981 | 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 | """
FORENSIQ β Main Gradio Application
Physics-Based, Multi-Agent Forensic Framework for Explainable Deepfake Detection
"""
import os
import sys
import time
import numpy as np
import gradio as gr
import plotly.graph_objects as go
import plotly.express as px
from PIL import Image
from concurrent.futures import ThreadPoolExecutor, as_completed
from typing import List, Tuple, Any
# Import agents
from agents.optical_agent import run_optical_agent, AgentEvidence
from agents.sensor_agent import run_sensor_agent
from agents.model_agent import run_model_agent
from agents.statistical_agent import run_statistical_agent
from agents.semantic_agent import run_semantic_agent
from agents.metadata_agent import run_metadata_agent
from agents.text_agent import run_text_agent
# Import engine and explanation
from bayesian_engine import bayesian_synthesis, ForensicVerdict
from explanation import generate_forensic_report, generate_reasoning_tree, generate_court_brief
# βββ Agent Orchestrator ββββββββββββββββββββββββββββββββββββββββββββββ
def run_all_agents(img: Image.Image) -> Tuple[List[AgentEvidence], ForensicVerdict]:
"""Run all 7 forensic agents in parallel and synthesize via Bayesian engine."""
if img is None:
raise ValueError("No image provided")
# Ensure RGB
if img.mode != "RGB":
img = img.convert("RGB")
# Resize if too large (for speed)
max_dim = 2048
w, h = img.size
if max(w, h) > max_dim:
ratio = max_dim / max(w, h)
img = img.resize((int(w * ratio), int(h * ratio)), Image.LANCZOS)
# ββ Capture Modality Detection (runs BEFORE agents) βββββββββββββββ
from agents.modality_detector import detect_modality
modality = detect_modality(img)
adj = modality.score_adjustments
print(f"[FORENSIQ] Modality: {modality.modality} (conf={modality.confidence})", file=sys.stderr)
print(f"[FORENSIQ] Adjustments: {len(adj)} tests recalibrated", file=sys.stderr)
# Signal processing agents (fast, run in parallel with modality adjustments)
signal_agents = [
("optical", lambda i: run_optical_agent(i, adj)),
("sensor", lambda i: run_sensor_agent(i, adj)),
("model", lambda i: run_model_agent(i, adj)),
("statistical", lambda i: run_statistical_agent(i, adj)),
("metadata", lambda i: run_metadata_agent(i, adj)),
]
# VLM agents (no modality adjustment needed β VLM sees the image directly)
vlm_agents = [
("semantic", run_semantic_agent),
("text", run_text_agent),
]
results = {}
with ThreadPoolExecutor(max_workers=7) as executor:
futures = {}
for name, fn in signal_agents + vlm_agents:
futures[executor.submit(fn, img)] = name
for future in as_completed(futures):
name = futures[future]
try:
results[name] = future.result()
except Exception as e:
print(f"[FORENSIQ] Agent '{name}' FAILED: {e}", file=sys.stderr)
results[name] = AgentEvidence(
agent_name=f"{name.title()} Agent (Error)",
violation_score=0.0,
confidence=0.0,
failure_prob=1.0,
rationale=f"Agent failed: {str(e)}",
)
# Order agents consistently
ordered = [
results.get("optical"),
results.get("sensor"),
results.get("model"),
results.get("statistical"),
results.get("semantic"),
results.get("metadata"),
results.get("text"),
]
ordered = [r for r in ordered if r is not None]
# Log agent scores for debugging
for a in ordered:
status = "ACTIVE" if a.failure_prob < 0.8 else "FAILED"
print(f"[FORENSIQ] {a.agent_name}: score={a.violation_score:+.3f} conf={a.confidence:.3f} fail={a.failure_prob:.2f} [{status}]", file=sys.stderr)
# FIX Bug 3: Filter out failed agents BEFORE Bayesian synthesis
# Failed agents (failure_prob >= 0.8) contribute no evidence β they're
# ghost entries that shouldn't appear in the reasoning tree or affect
# the active agent count display.
active_agents = [r for r in ordered if r.failure_prob < 0.8]
failed_agents = [r for r in ordered if r.failure_prob >= 0.8]
n_active = len(active_agents)
n_total = len(ordered)
print(f"[FORENSIQ] Active agents: {n_active}/{n_total}", file=sys.stderr)
# Bayesian synthesis β only pass active agents
verdict = bayesian_synthesis(active_agents)
# Attach modality info to verdict for reporting β include ALL indicators for diagnostics
verdict.reasoning_tree["modality"] = {
"detected": modality.modality,
"confidence": modality.confidence,
"indicators": {k: v for k, v in modality.indicators.items()
if not isinstance(v, np.ndarray) and k != "modality_scores"},
"modality_scores": modality.indicators.get("modality_scores", {}),
"adjustments_applied": len(modality.score_adjustments),
"adjustments_list": list(modality.score_adjustments.keys())[:10],
}
# Track failed agents in the tree for transparency
if failed_agents:
verdict.reasoning_tree["failed_agents"] = [
{"name": a.agent_name, "reason": a.rationale[:200]}
for a in failed_agents
]
# Generate explanations
verdict.forensic_report = generate_forensic_report(verdict)
reasoning = generate_reasoning_tree(verdict)
verdict.court_brief = generate_court_brief(verdict)
# Return ALL agents (including failed) for display, but verdict uses only active
return ordered, verdict, reasoning
# βββ Visualization Functions βββββββββββββββββββββββββββββββββββββββββ
def create_gauge_chart(probability: float, verdict: str) -> go.Figure:
"""Create a gauge chart for the overall probability."""
if probability > 0.65:
color = "red"
elif probability > 0.45:
color = "orange"
elif probability > 0.25:
color = "gold"
else:
color = "green"
fig = go.Figure(go.Indicator(
mode="gauge+number+delta",
value=probability * 100,
number={"suffix": "%", "font": {"size": 48}},
title={"text": f"Manipulation Probability<br><span style='font-size:0.7em;color:{color}'>{verdict}</span>",
"font": {"size": 18}},
gauge={
"axis": {"range": [0, 100], "tickwidth": 2},
"bar": {"color": color, "thickness": 0.3},
"bgcolor": "white",
"steps": [
{"range": [0, 25], "color": "rgba(0,180,0,0.15)"},
{"range": [25, 45], "color": "rgba(255,215,0,0.15)"},
{"range": [45, 65], "color": "rgba(255,165,0,0.15)"},
{"range": [65, 100], "color": "rgba(255,0,0,0.15)"},
],
"threshold": {
"line": {"color": "black", "width": 3},
"thickness": 0.8,
"value": probability * 100,
},
},
))
fig.update_layout(
height=280,
margin=dict(l=30, r=30, t=60, b=20),
paper_bgcolor="rgba(0,0,0,0)",
font={"family": "Inter, sans-serif"},
)
return fig
def create_radar_chart(agent_results: List[AgentEvidence]) -> go.Figure:
"""Create radar chart showing all agent scores."""
names = []
scores = []
colors = []
for agent in agent_results:
short_name = agent.agent_name.replace(" Agent", "").replace(" Characteristics", "")
names.append(short_name)
display_score = (agent.violation_score + 1) * 50
scores.append(display_score)
if agent.violation_score > 0.2:
colors.append("red")
elif agent.violation_score < -0.1:
colors.append("green")
else:
colors.append("gold")
names_closed = names + [names[0]]
scores_closed = scores + [scores[0]]
fig = go.Figure()
fig.add_trace(go.Scatterpolar(
r=scores_closed,
theta=names_closed,
fill="toself",
fillcolor="rgba(255, 100, 100, 0.15)",
line=dict(color="rgba(255, 50, 50, 0.8)", width=2),
name="Violation Score",
))
fig.add_trace(go.Scatterpolar(
r=[50] * (len(names) + 1),
theta=names_closed,
line=dict(color="gray", width=1, dash="dash"),
name="Neutral (score=0)",
showlegend=True,
))
fig.update_layout(
polar=dict(
radialaxis=dict(
visible=True, range=[0, 100],
tickvals=[0, 25, 50, 75, 100],
ticktext=["Authentic", "", "Neutral", "", "Fake"],
),
),
height=400,
margin=dict(l=60, r=60, t=40, b=40),
paper_bgcolor="rgba(0,0,0,0)",
font={"family": "Inter, sans-serif", "size": 11},
showlegend=True,
legend=dict(x=0, y=-0.15, orientation="h"),
)
return fig
def create_agent_bar_chart(agent_results: List[AgentEvidence]) -> go.Figure:
"""Create horizontal bar chart of agent scores."""
names = []
scores = []
colors = []
confidences = []
for agent in sorted(agent_results, key=lambda a: a.violation_score, reverse=True):
short = agent.agent_name.replace(" Agent", "")
names.append(short)
scores.append(agent.violation_score)
confidences.append(agent.confidence)
if agent.violation_score > 0.2:
colors.append("rgba(220, 53, 69, 0.8)")
elif agent.violation_score < -0.1:
colors.append("rgba(40, 167, 69, 0.8)")
else:
colors.append("rgba(255, 193, 7, 0.8)")
fig = go.Figure()
fig.add_trace(go.Bar(
y=names,
x=scores,
orientation="h",
marker_color=colors,
text=[f"{s:+.2f}" for s in scores],
textposition="outside",
))
fig.add_vline(x=0, line_dash="dash", line_color="gray")
fig.update_layout(
xaxis=dict(title="Violation Score (-1=Authentic, +1=Fake)", range=[-1.1, 1.1]),
height=350,
margin=dict(l=150, r=50, t=20, b=40),
paper_bgcolor="rgba(0,0,0,0)",
font={"family": "Inter, sans-serif"},
)
return fig
def create_ela_display(agent_results: List[AgentEvidence]) -> Image.Image:
"""Extract ELA image from metadata agent if available."""
for agent in agent_results:
if agent.visual_evidence is not None:
if isinstance(agent.visual_evidence, Image.Image):
return agent.visual_evidence
return None
def create_fft_display(agent_results: List[AgentEvidence]) -> go.Figure:
"""Create FFT magnitude spectrum heatmap."""
for agent in agent_results:
if agent.agent_name == "Generative Model Agent":
for sf in agent.sub_findings:
if "magnitude_spectrum" in sf:
mag = sf["magnitude_spectrum"]
fig = go.Figure(data=go.Heatmap(
z=mag,
colorscale="Viridis",
showscale=True,
colorbar=dict(title="Log Magnitude"),
))
fig.update_layout(
title="2D FFT Magnitude Spectrum",
height=400,
margin=dict(l=40, r=40, t=50, b=40),
paper_bgcolor="rgba(0,0,0,0)",
xaxis=dict(showticklabels=False),
yaxis=dict(showticklabels=False, scaleanchor="x"),
)
return fig
fig = go.Figure()
fig.update_layout(height=400, title="FFT Spectrum (not available)")
return fig
def create_noise_map_display(agent_results: List[AgentEvidence]) -> go.Figure:
"""Create noise residual heatmap."""
for agent in agent_results:
if agent.agent_name == "Sensor Characteristics Agent":
for sf in agent.sub_findings:
if "noise_map" in sf:
nm = sf["noise_map"]
fig = go.Figure(data=go.Heatmap(
z=nm,
colorscale="Hot",
showscale=True,
colorbar=dict(title="Noise Energy"),
))
fig.update_layout(
title="PRNU Noise Residual Map",
height=400,
margin=dict(l=40, r=40, t=50, b=40),
paper_bgcolor="rgba(0,0,0,0)",
xaxis=dict(showticklabels=False),
yaxis=dict(showticklabels=False, scaleanchor="x"),
)
return fig
fig = go.Figure()
fig.update_layout(height=400, title="Noise Map (not available)")
return fig
def create_benford_chart(agent_results: List[AgentEvidence]) -> go.Figure:
"""Create Benford's Law comparison chart."""
for agent in agent_results:
if agent.agent_name == "Statistical Priors Agent":
for sf in agent.sub_findings:
if "observed" in sf and "benford_expected" in sf:
observed = sf["observed"]
expected = sf["benford_expected"]
digits = list(range(1, 10))
fig = go.Figure()
fig.add_trace(go.Bar(
x=digits, y=expected,
name="Benford's Law (Expected)",
marker_color="rgba(100, 150, 255, 0.7)",
))
fig.add_trace(go.Bar(
x=digits, y=observed,
name="Observed Distribution",
marker_color="rgba(255, 100, 100, 0.7)",
))
fig.update_layout(
title=f"Benford's Law Analysis (ΟΒ²={sf.get('chi_squared', 0):.5f})",
xaxis=dict(title="First Digit", dtick=1),
yaxis=dict(title="Proportion"),
barmode="group",
height=350,
margin=dict(l=50, r=30, t=50, b=40),
paper_bgcolor="rgba(0,0,0,0)",
font={"family": "Inter, sans-serif"},
)
return fig
fig = go.Figure()
fig.update_layout(height=350, title="Benford's Law (not available)")
return fig
def format_metadata_table(agent_results: List[AgentEvidence]) -> list:
"""Extract EXIF data as table rows."""
for agent in agent_results:
if agent.agent_name == "Metadata Agent":
for sf in agent.sub_findings:
if "exif_data" in sf:
rows = [[k, v[:100]] for k, v in sf["exif_data"].items()]
if not rows:
rows = [["(No EXIF data)", "Image has no metadata"]]
return rows
return [["(Not available)", ""]]
# βββ Main Analysis Pipeline βββββββββββββββββββββββββββββββββββββββββ
def analyze_image(img):
"""Main entry point for Gradio β runs full FORENSIQ pipeline."""
if img is None:
return (
"<div style='text-align:center;padding:40px;color:#888;'>Upload an image to begin analysis</div>",
go.Figure(),
go.Figure(),
go.Figure(),
"Upload an image to begin analysis.",
"",
"",
go.Figure(),
None,
go.Figure(),
go.Figure(),
[["", ""]],
"",
)
try:
# Convert numpy array to PIL if needed
if isinstance(img, np.ndarray):
img = Image.fromarray(img)
agent_results, verdict, reasoning_tree_md = run_all_agents(img)
# Build verdict HTML
prob = verdict.probability_fake
if prob > 0.65:
bg = "linear-gradient(135deg, #dc3545, #c82333)"
icon = "π΄"
elif prob > 0.52:
bg = "linear-gradient(135deg, #fd7e14, #e8590c)"
icon = "π "
elif prob >= 0.48:
bg = "linear-gradient(135deg, #6c757d, #495057)"
icon = "βͺ"
elif prob > 0.25:
bg = "linear-gradient(135deg, #ffc107, #e0a800)"
icon = "π‘"
else:
bg = "linear-gradient(135deg, #28a745, #218838)"
icon = "β
"
# Get modality info for display
mod_info = verdict.reasoning_tree.get("modality", {})
mod_name = mod_info.get("detected", "UNKNOWN")
mod_conf = mod_info.get("confidence", 0)
mod_adj = mod_info.get("adjustments_applied", 0)
mod_label = {
"PORTRAIT_MODE": "π± Portrait Mode",
"MESSAGING": "π¬ Messaging App",
"SMARTPHONE": "π± Smartphone",
"SCREENSHOT": "π₯οΈ Screenshot",
"DSLR": "π· DSLR",
"MACRO_DSLR": "π¬ Macro DSLR",
"UNKNOWN": "β Unknown",
}.get(mod_name, f"π· {mod_name}")
# Count active agents from verdict (which only has active agents now)
n_active = len(verdict.agent_results)
verdict_html = f"""
<div style="background:{bg}; color:white; padding:24px; border-radius:16px;
text-align:center; font-family:Inter,sans-serif; box-shadow: 0 4px 15px rgba(0,0,0,0.2);">
<div style="font-size:48px; margin-bottom:8px;">{icon}</div>
<div style="font-size:28px; font-weight:700; margin-bottom:4px;">{verdict.verdict}</div>
<div style="font-size:42px; font-weight:800;">{prob:.1%}</div>
<div style="font-size:14px; opacity:0.9; margin-top:4px;">
Confidence: {verdict.confidence} | Agents: {n_active}/7 active
</div>
<div style="font-size:12px; opacity:0.7; margin-top:6px; border-top:1px solid rgba(255,255,255,0.2); padding-top:6px;">
Modality: {mod_label} ({mod_conf:.0%}) | {mod_adj} test(s) recalibrated
</div>
</div>
"""
# Create all visualizations
gauge = create_gauge_chart(verdict.probability_fake, verdict.verdict)
radar = create_radar_chart(agent_results)
bar_chart = create_agent_bar_chart(agent_results)
ela_img = create_ela_display(agent_results)
fft_fig = create_fft_display(agent_results)
noise_fig = create_noise_map_display(agent_results)
benford_fig = create_benford_chart(agent_results)
metadata_rows = format_metadata_table(agent_results)
return (
verdict_html,
gauge,
radar,
bar_chart,
verdict.forensic_report,
reasoning_tree_md,
verdict.court_brief,
fft_fig,
ela_img,
noise_fig,
benford_fig,
metadata_rows,
_build_agent_details_md(agent_results),
)
except Exception as e:
import traceback
traceback.print_exc(file=sys.stderr)
error_html = f"""
<div style="background:linear-gradient(135deg, #6c757d, #495057); color:white;
padding:24px; border-radius:16px; text-align:center;">
<div style="font-size:48px;">β οΈ</div>
<div style="font-size:20px; font-weight:700;">Analysis Error</div>
<div style="font-size:14px; margin-top:8px;">{str(e)}</div>
</div>
"""
empty_fig = go.Figure()
return (
error_html,
empty_fig, empty_fig, empty_fig,
f"Error during analysis: {str(e)}", "", "",
empty_fig, None, empty_fig, empty_fig,
[["Error", str(e)]],
"",
)
def _build_agent_details_md(agent_results: List[AgentEvidence]) -> str:
"""Build detailed agent findings markdown."""
md = ""
for agent in agent_results:
if agent.violation_score > 0.2:
badge = "π΄ VIOLATED"
elif agent.violation_score < -0.1:
badge = "π’ COMPLIANT"
elif agent.failure_prob > 0.7:
badge = "βͺ SKIPPED"
else:
badge = "π‘ NEUTRAL"
md += f"### {agent.agent_name} β {badge}\n\n"
md += f"**Score:** {agent.violation_score:+.3f} | "
md += f"**Confidence:** {agent.confidence:.1%} | "
md += f"**Failure:** {agent.failure_prob:.1%}\n\n"
for sf in agent.sub_findings:
test = sf.get("test", "")
note = sf.get("note", "")
s = sf.get("score", 0)
ic = "π΄" if s > 0.2 else "π’" if s < -0.1 else "π‘"
# Show modality adjustment info
if sf.get("modality_adjusted"):
adj_info = f" [Γ{sf.get('adjustment_multiplier', '?')} modality]"
else:
adj_info = ""
md += f"- {ic} **{test}** ({s:+.2f}{adj_info}): {note}\n"
md += "\n---\n\n"
return md
# βββ Gradio UI βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
CUSTOM_CSS = """
.gradio-container {
max-width: 1400px !important;
font-family: 'Inter', sans-serif !important;
}
.main-title {
text-align: center;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 2.5em !important;
font-weight: 800 !important;
margin-bottom: 0 !important;
}
.subtitle {
text-align: center;
color: #6c757d;
font-size: 1.1em;
margin-top: 0;
}
.tab-content {
padding: 10px;
}
footer { display: none !important; }
"""
HEADER_MD = """
<div style="text-align:center; padding: 10px 0;">
<h1 class="main-title">π¬ FORENSIQ</h1>
<p class="subtitle">Physics-Based, Multi-Agent Forensic Framework for Explainable Deepfake Detection</p>
<p style="color:#888; font-size:0.85em;">
7 Independent Forensic Agents β’ Bayesian Evidence Synthesis β’ Court-Admissible Reports
</p>
</div>
"""
def build_app():
with gr.Blocks(
title="FORENSIQ β Deepfake Detection",
theme=gr.themes.Soft(
primary_hue="purple",
secondary_hue="blue",
),
css=CUSTOM_CSS,
) as demo:
gr.HTML(HEADER_MD)
with gr.Row(equal_height=False):
# Left column: input
with gr.Column(scale=1, min_width=300):
image_input = gr.Image(
label="π· Upload Suspect Image",
type="pil",
height=350,
sources=["upload", "clipboard"],
)
analyze_btn = gr.Button(
"π¬ Run Forensic Analysis",
variant="primary",
size="lg",
)
gr.Markdown("""
<div style="font-size:0.8em; color:#888; padding:8px;">
<b>Supported:</b> JPEG, PNG, WebP, BMP, TIFF<br>
<b>Agents:</b> Optical Physics β’ Sensor β’ Generative Model β’ Statistical β’ Semantic β’ Metadata β’ Text<br>
<b>Engine:</b> Bayesian Evidence Synthesis with Independence Correction
</div>
""")
gr.HTML("""
<div style="background:linear-gradient(135deg,#fff3cd,#ffeeba);border:1px solid #ffc107;
border-radius:8px;padding:10px;margin-top:8px;font-size:0.78em;color:#856404;">
<b>β‘ VLM Status:</b> Semantic & Text agents require HF Inference credits.
Without credits, 5/7 agents run (signal processing only). For full 7/7 analysis
including anatomy, lighting, and physics checks, ensure your HF account has
active <a href="https://huggingface.co/settings/billing" target="_blank" style="color:#856404;font-weight:bold;">inference credits</a>
or a <a href="https://huggingface.co/subscribe/pro" target="_blank" style="color:#856404;font-weight:bold;">PRO subscription</a>.
</div>
""")
# Right column: verdict
with gr.Column(scale=1, min_width=300):
verdict_html = gr.HTML(
value="<div style='text-align:center;padding:60px;color:#aaa;font-size:1.2em;'>Upload an image and click Analyze</div>"
)
gauge_plot = gr.Plot(label="Confidence Gauge")
# Tabs for detailed results
with gr.Tabs():
with gr.Tab("π Overview"):
with gr.Row():
radar_plot = gr.Plot(label="Agent Scores Radar")
bar_plot = gr.Plot(label="Agent Violation Scores")
agent_details_md = gr.Markdown(label="Agent Details")
with gr.Tab("π Frequency Analysis"):
with gr.Row():
fft_plot = gr.Plot(label="FFT Magnitude Spectrum")
benford_plot = gr.Plot(label="Benford's Law Analysis")
with gr.Tab("π¬ Signal Forensics"):
with gr.Row():
noise_plot = gr.Plot(label="PRNU Noise Residual Map")
ela_image = gr.Image(label="Error Level Analysis (ELA)", type="pil")
with gr.Tab("π Metadata"):
metadata_table = gr.Dataframe(
headers=["Field", "Value"],
label="EXIF Metadata",
wrap=True,
)
with gr.Tab("π Forensic Report"):
report_md = gr.Markdown(label="Full Forensic Report")
with gr.Tab("π³ Reasoning Tree"):
tree_md = gr.Markdown(label="Reasoning Tree")
with gr.Tab("βοΈ Court Brief"):
court_md = gr.Markdown(label="Court Brief (FRE 702)")
with gr.Tab("π₯ Export"):
gr.Markdown("""### Export Forensic Report
Export the complete analysis in your preferred format. Reports are professionally formatted using **Qwen2.5-72B-Instruct** when available.
""")
with gr.Row():
export_pdf_btn = gr.Button("π Export PDF", variant="primary")
export_docx_btn = gr.Button("π Export DOCX", variant="primary")
export_txt_btn = gr.Button("π Export TXT", variant="secondary")
export_md_btn = gr.Button("π Export Markdown", variant="secondary")
export_file = gr.File(label="Download Report", visible=True)
export_status = gr.Markdown("")
# ββ Hidden state to store report data for exports ββββββββββββ
report_state = gr.State("")
court_state = gr.State("")
tree_state = gr.State("")
# Wire up the analysis β also store report data in state
def analyze_and_store(img):
results = analyze_image(img)
# results[4] = report_md, results[5] = tree_md, results[6] = court_md
return list(results) + [results[4], results[6], results[5]]
analyze_btn.click(
fn=analyze_and_store,
inputs=[image_input],
outputs=[
verdict_html,
gauge_plot,
radar_plot,
bar_plot,
report_md,
tree_md,
court_md,
fft_plot,
ela_image,
noise_plot,
benford_plot,
metadata_table,
agent_details_md,
report_state,
court_state,
tree_state,
],
)
# ββ Export handlers βββββββββββββββββββββββββββββββββββββββββββ
from export import export_pdf, export_docx, export_txt, export_md
def do_export_pdf(report, court, tree):
if not report: return None, "β οΈ Run analysis first"
try:
path = export_pdf(report, court, tree)
return path, "β
PDF exported successfully"
except Exception as e:
return None, f"β Export failed: {e}"
def do_export_docx(report, court, tree):
if not report: return None, "β οΈ Run analysis first"
try:
path = export_docx(report, court, tree)
return path, "β
DOCX exported successfully"
except Exception as e:
return None, f"β Export failed: {e}"
def do_export_txt(report, court, tree):
if not report: return None, "β οΈ Run analysis first"
try:
path = export_txt(report, court, tree)
return path, "β
TXT exported successfully"
except Exception as e:
return None, f"β Export failed: {e}"
def do_export_md(report, court, tree):
if not report: return None, "β οΈ Run analysis first"
try:
path = export_md(report, court, tree)
return path, "β
Markdown exported successfully"
except Exception as e:
return None, f"β Export failed: {e}"
export_pdf_btn.click(fn=do_export_pdf, inputs=[report_state, court_state, tree_state], outputs=[export_file, export_status])
export_docx_btn.click(fn=do_export_docx, inputs=[report_state, court_state, tree_state], outputs=[export_file, export_status])
export_txt_btn.click(fn=do_export_txt, inputs=[report_state, court_state, tree_state], outputs=[export_file, export_status])
export_md_btn.click(fn=do_export_md, inputs=[report_state, court_state, tree_state], outputs=[export_file, export_status])
# Footer
gr.HTML("""
<div style="text-align:center; padding:20px; color:#aaa; font-size:0.8em; border-top:1px solid #eee; margin-top:20px;">
<b>FORENSIQ v1.0</b> β Physics-Based Multi-Agent Forensic Framework<br>
7 Agents β’ 127+ Physical Constraints β’ Bayesian Evidence Synthesis β’ Court-Admissible Reports<br>
Powered by Qwen2.5-VL for semantic analysis β’ Signal processing via NumPy/SciPy
</div>
""")
return demo
if __name__ == "__main__":
demo = build_app()
demo.launch(server_name="0.0.0.0", server_port=7860)
|