Spaces:
Sleeping
Sleeping
File size: 15,180 Bytes
56aa046 89870ca 56aa046 89870ca 56aa046 | 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 | """
Gradio demo: Detecting LLM Hallucinations from Hidden States
Probes Qwen2.5-0.5B internal representations to classify a response as
truthful or hallucinated β no external fact-checker, no sampling.
Usage (HF Spaces or local):
python app.py
Requires probe.joblib produced by save_probe.py.
"""
from __future__ import annotations
import os
import re
import warnings
import gradio as gr
import joblib
import numpy as np
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
# ββ Silence noisy HF / torch logs βββββββββββββββββββββββββββββββββββββββββββββ
os.environ.setdefault("TOKENIZERS_PARALLELISM", "false")
warnings.filterwarnings("ignore")
# ββ Config βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
MODEL_NAME = "Qwen/Qwen2.5-0.5B"
MAX_LENGTH = 512
DEVICE = "cuda" if torch.cuda.is_available() else "cpu"
DTYPE = torch.bfloat16 if DEVICE == "cuda" else torch.float32
# Qwen2.5-0.5B: 24 transformer layers + embedding = 25 hidden states.
# Mid-band (40β64% depth) = layers 9β16; signal peaks here, not at the final layer.
MID_BAND = list(range(9, 17))
GEO_LAYERS = (8, 12, 16, 20, 24)
_WORD = re.compile(r"\w+")
# ββ Load model once at startup βββββββββββββββββββββββββββββββββββββββββββββββββ
print(f"[startup] Loading {MODEL_NAME} on {DEVICE} ({DTYPE})β¦")
tokenizer = AutoTokenizer.from_pretrained(MODEL_NAME)
if tokenizer.pad_token is None:
tokenizer.pad_token = tokenizer.eos_token
model = AutoModelForCausalLM.from_pretrained(MODEL_NAME, torch_dtype=DTYPE)
model.eval()
model.to(DEVICE)
print("[startup] Model loaded.")
# ββ Load probe ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
_artifact = joblib.load("probe.joblib")
_probe = _artifact["probe"]
_threshold = float(_artifact["threshold"])
print(f"[startup] Probe loaded experiment={_artifact.get('exp_name')} "
f"threshold={_threshold:.3f} features={_artifact.get('n_features')}")
# ββ Prompt formatting ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _fmt_prompt(context: str, question: str) -> str:
"""Reconstruct the ChatML prompt used during Qwen SMILES data generation."""
return (
"<|im_start|>system\nYou are a helpful assistant.<|im_end|>\n"
"<|im_start|>user\n"
"Given the context, answer the question in a single brief but complete sentence.\n"
f"{context}\n"
"Note that your answer must be based only on the context. "
'If the context does not provide enough information, '
'reply with: "Unable to answer based on given context".\n'
f"Here is the question: {question}\nYour answer:<|im_end|>\n"
"<|im_start|>assistant\n"
)
# ββ Inference helpers ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@torch.no_grad()
def _generate(prompt: str) -> str:
"""Let Qwen2.5-0.5B produce one greedy response."""
enc = tokenizer(
prompt, return_tensors="pt",
truncation=True, max_length=MAX_LENGTH - 80,
).to(DEVICE)
out = model.generate(
**enc,
max_new_tokens=80,
do_sample=False,
pad_token_id=tokenizer.eos_token_id,
)
new_ids = out[0][enc.input_ids.shape[1]:]
return tokenizer.decode(new_ids, skip_special_tokens=True).strip()
@torch.no_grad()
def _extract(text: str, prompt_len: int) -> tuple[np.ndarray, np.ndarray, np.ndarray]:
"""Run one forward pass and return mid-band pooled + geometric features."""
enc = tokenizer(
text, return_tensors="pt",
truncation=True, max_length=MAX_LENGTH,
).to(DEVICE)
out = model(**enc, output_hidden_states=True)
hs = out.hidden_states # 25 Γ (1, T, 896)
am = enc.attention_mask[0].bool()
n_real = int(am.sum())
# Stack all layers, real tokens only: (25, n_real, 896) float32
h = torch.stack([layer[0][am] for layer in hs], dim=0).float()
rfrom = max(min(prompt_len, n_real - 1), 0)
resp = h[:, rfrom:, :] if rfrom < h.size(1) else h[:, -1:, :]
# ββ Pooled hidden states: max + std over mid-band layers ββββββββββββββββββ
h_max = resp[MID_BAND].amax(dim=1).cpu().numpy().astype(np.float32) # (8, 896)
h_std = (
resp[MID_BAND].std(dim=1).cpu().numpy().astype(np.float32)
if resp.size(1) > 1
else np.zeros((len(MID_BAND), h.shape[-1]), dtype=np.float32)
)
# ββ Geometric scalars (EigenScore family) βββββββββββββββββββββββββββββββββ
geo_vals: list[float] = []
prev_mean: torch.Tensor | None = None
for L in GEO_LAYERS:
layer = resp[L] # (n_resp, 896)
norm = layer.norm(dim=-1).mean().item()
centered = layer - layer.mean(dim=0, keepdim=True)
n = max(layer.size(0), 1)
gram = centered @ centered.T / n
gram = gram + 1e-4 * torch.eye(gram.size(0), device=gram.device, dtype=gram.dtype)
try:
eig = torch.linalg.eigvalsh(gram)
except Exception:
eig = torch.linalg.eigvalsh(gram.double().cpu()).float()
eigenscore = torch.log(eig.clamp_min(1e-6)).mean().item()
cur_mean = layer.mean(dim=0)
drift = (
torch.nn.functional.cosine_similarity(
cur_mean.unsqueeze(0), prev_mean.unsqueeze(0),
).item()
if prev_mean is not None else 1.0
)
prev_mean = cur_mean
geo_vals += [norm, eigenscore, drift]
return h_max, h_std, np.array(geo_vals, dtype=np.float32)
def _surface(context: str, response: str) -> np.ndarray:
"""Cheap lexical grounding + length features (6 scalars)."""
ctx_words = set(_WORD.findall(context.lower()))
resp_words = _WORD.findall(response.lower())
n = max(len(resp_words), 1)
grounding = sum(w in ctx_words for w in resp_words) / n
return np.array([
grounding,
1.0 - grounding,
float(len(resp_words)),
float(len(set(resp_words)) / n),
float("unable to answer" in response.lower()),
float("unable to answer" in context.lower()),
], dtype=np.float32)
# ββ Main detection function ββββββββββββββββββββββββββββββββββββββββββββββββββββ
def detect(
context: str,
question: str,
response: str,
auto_gen: bool,
progress=gr.Progress(track_tqdm=True),
):
context, question = context.strip(), question.strip()
if not context:
return "", 0.0, "β οΈ Please provide a context passage.", ""
if not question:
return "", 0.0, "β οΈ Please provide a question.", ""
prompt = _fmt_prompt(context, question)
# ββ Step 1: get response βββββββββββββββββββββββββββββββββββββββββββββββββββ
if auto_gen or not response.strip():
progress(0.05, desc="Generating response with Qwen2.5-0.5Bβ¦")
response = _generate(prompt)
# ββ Step 2: extract features βββββββββββββββββββββββββββββββββββββββββββββββ
progress(0.3, desc="Running forward pass (hidden states)β¦")
text = prompt + response
prompt_len = len(tokenizer(prompt, truncation=True, max_length=MAX_LENGTH)["input_ids"])
h_max, h_std, geo = _extract(text, prompt_len)
surf = _surface(context, response)
# Feature vector must match build_matrix order:
# [max_resp_L9..L16 flat (7168), std_resp_L9..L16 flat (7168), geo (15), surf (6)]
X = np.concatenate([h_max.flatten(), h_std.flatten(), geo, surf]).reshape(1, -1)
# ββ Step 3: probe ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
progress(0.9, desc="Running linear probeβ¦")
prob = float(_probe.predict_proba(X)[0, 1])
grounding = float(surf[0])
resp_len = int(surf[2])
# ββ Step 4: format output ββββββββββββββββββββββββββββββββββββββββββββββββββ
is_hallu = prob >= _threshold
verdict = "π΄ HALLUCINATED" if is_hallu else "π’ TRUTHFUL"
bar = "β" * round(prob * 20) + "β" * (20 - round(prob * 20))
detail = (
f"**Probe score:** `{prob:.3f}` / threshold `{_threshold:.3f}`\n\n"
f"`[{bar}]` {prob:.1%} hallucination probability\n\n"
f"| Signal | Value |\n"
f"|---|---|\n"
f"| Lexical grounding (resp words in context) | {grounding:.1%} |\n"
f"| Response length | {resp_len} words |\n"
f"| Contains 'unable to answer' | {'yes' if surf[4] else 'no'} |\n\n"
f"*Hidden-state features: {len(MID_BAND)} mid-stack layers (9β16 of 25), "
f"`max` + `std` pooling over response tokens.*"
)
progress(1.0)
return response, round(prob, 4), verdict, detail
# ββ UI βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
_TITLE = "# Hallucination Detection via Hidden-State Probing"
_DESC = """\
Detects whether a Qwen2.5-0.5B response is **hallucinated** or **truthful** by reading the
model's own internal representations β **no external checker, no sampling**.
**Key finding from the research:** the truthfulness signal peaks at *middle layers* (~40β60%
depth), not the final layer. A simple linear probe on mid-stack hidden states reaches
**AUROC β 0.77**, vs. 0.67 for the standard last-layer baseline.
*Trained on SMILES: 689 SQuAD-derived QA samples answered by Qwen2.5-0.5B.*
"""
_HOW = """\
---
**How it works**
1. Your `context + question + response` is tokenised and fed through Qwen2.5-0.5B in a
*single forward pass* (no generation needed if you supply the response).
2. Hidden states from 8 mid-stack layers (9β16) are pooled over the *response tokens* using
`max` and `std` pooling β the two operations that carry the strongest truthfulness signal.
3. EigenScore-style geometric scalars (log-det of the response-token covariance) and six
cheap lexical features (grounding ratio, length, β¦) are appended.
4. A strong-L2 logistic regression (`fusion_nopca_L2`) returns a hallucination probability.
A nested-CV-tuned threshold converts it to a binary verdict.
"""
EXAMPLES = [
[
"The United States Geological Survey (USGS) released a new earthquake forecast for California, "
"predicting a 60 percent probability of a major earthquake in the next 30 years.",
"Which organization released a California earthquake forecast?",
"Here is the answer: USGS",
False,
],
[
"A ring is an algebraic structure in which addition and multiplication are defined and have "
"similar properties to those operations defined for the integers. Ring theory is the study of rings.",
"What is the name of an algebraic structure in which addition, subtraction and multiplication are defined?",
"Prime number",
False,
],
[
"The Eiffel Tower is a wrought-iron lattice tower on the Champ de Mars in Paris, France. "
"It is named after the engineer Gustave Eiffel, whose company designed and built the tower "
"from 1887 to 1889.",
"When was the Eiffel Tower built?",
"",
True,
],
[
"Marie Curie was a Polish and naturalised-French physicist and chemist who conducted pioneering "
"research on radioactivity. She was the first woman to win a Nobel Prize, the first person to "
"win the Nobel Prize twice, and the only person to win the Nobel Prize in two scientific sciences.",
"How many Nobel Prizes did Marie Curie win?",
"Marie Curie won the Nobel Prize three times.",
False,
],
]
with gr.Blocks(title="Hallucination Detector", theme=gr.themes.Soft()) as demo:
gr.Markdown(_TITLE)
gr.Markdown(_DESC)
with gr.Row():
# ββ Left: inputs βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
with gr.Column(scale=1):
ctx_in = gr.Textbox(
label="Context passage",
lines=7,
placeholder="Paste the context paragraph the model should answer fromβ¦",
)
q_in = gr.Textbox(
label="Question",
lines=2,
placeholder="What question is being asked?",
)
resp_in = gr.Textbox(
label="Response to evaluate (leave blank to auto-generate)",
lines=3,
placeholder="The model's answerβ¦",
)
auto_cb = gr.Checkbox(
label="Auto-generate response from Qwen2.5-0.5B",
value=False,
)
run_btn = gr.Button("Detect hallucination", variant="primary", size="lg")
# ββ Right: outputs ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
with gr.Column(scale=1):
resp_out = gr.Textbox(
label="Response evaluated",
lines=3,
interactive=False,
)
prob_out = gr.Number(label="Hallucination probability (0 = truthful, 1 = hallucinated)")
verdict_out = gr.Textbox(label="Verdict", interactive=False, lines=1)
detail_md = gr.Markdown()
gr.Examples(
examples=EXAMPLES,
inputs=[ctx_in, q_in, resp_in, auto_cb],
outputs=[resp_out, prob_out, verdict_out, detail_md],
fn=detect,
cache_examples=False,
label="Try an example (one truthful Β· two hallucinated Β· one auto-generated)",
)
run_btn.click(
detect,
inputs=[ctx_in, q_in, resp_in, auto_cb],
outputs=[resp_out, prob_out, verdict_out, detail_md],
)
gr.Markdown(_HOW)
demo.launch()
|