File size: 31,859 Bytes
492b1a0 | 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 | """
Freckles Center-Mass Interception β Full Geometric Alignment Battery
======================================================================
Intercept every stage of the PatchSVAE pipeline and measure everything.
Pipeline stages intercepted:
1. Raw patches (B, N, 48)
2. Encoder hidden states (B*N, 384) per block
3. Pre-SVD matrix M (B, N, 48, 4)
4. SVD components: U, S_orig, Vt (the bottleneck)
5. Cross-attention: S_in β S_out (the coordination)
6. Attention weights (B, 2, N, N) per layer
7. Reconstructed matrix M_hat (B*N, 192)
8. Decoder hidden states (B*N, 384) per block
9. Decoded patches (B, N, 48)
10. Stitched + boundary smooth (B, 3, H, W)
Metrics at each stage:
- Effective rank, condition number
- Singular value spectrum
- Spearman rank correlation with input/output
- Procrustes alignment between stages
- CV (coefficient of variation of volumes)
- Cosine similarity distributions
- Gradient magnitude (if training)
- Information retention ratio
- Dead neuron / activation statistics
Usage:
python freckles_observer.py --model v40_freckles_noise
"""
import os
import math
import json
import time
import torch
import torch.nn as nn
import torch.nn.functional as F
import numpy as np
from collections import OrderedDict
from scipy import stats as scipy_stats
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# HOOK-BASED INTERCEPTOR
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class PipelineInterceptor:
"""Attach hooks to every stage of PatchSVAE, capture activations."""
def __init__(self, model):
self.model = model
self.captures = OrderedDict()
self.hooks = []
self._attach_hooks()
def _attach_hooks(self):
m = self.model
# Encoder input projection
def hook_enc_in(module, inp, out):
self.captures['enc_in'] = out.detach()
self.hooks.append(m.enc_in.register_forward_hook(hook_enc_in))
# Encoder blocks
for i, block in enumerate(m.enc_blocks):
def make_hook(idx):
def hook(module, inp, out):
self.captures[f'enc_block_{idx}'] = out.detach()
return hook
self.hooks.append(block.register_forward_hook(make_hook(i)))
# Encoder output (pre-normalize, pre-SVD)
def hook_enc_out(module, inp, out):
self.captures['enc_out_raw'] = out.detach()
self.hooks.append(m.enc_out.register_forward_hook(hook_enc_out))
# Cross-attention layers
for i, layer in enumerate(m.cross_attn):
def make_ca_hook(idx):
def hook(module, inp, out):
self.captures[f'cross_attn_{idx}_in'] = inp[0].detach()
self.captures[f'cross_attn_{idx}_out'] = out.detach()
return hook
self.hooks.append(layer.register_forward_hook(make_ca_hook(i)))
# QKV hook for attention weights
def make_qkv_hook(idx):
def hook(module, inp, out):
self.captures[f'cross_attn_{idx}_qkv'] = out.detach()
return hook
self.hooks.append(layer.qkv.register_forward_hook(make_qkv_hook(i)))
# Decoder input
def hook_dec_in(module, inp, out):
self.captures['dec_in'] = out.detach()
self.hooks.append(m.dec_in.register_forward_hook(hook_dec_in))
# Decoder blocks
for i, block in enumerate(m.dec_blocks):
def make_hook(idx):
def hook(module, inp, out):
self.captures[f'dec_block_{idx}'] = out.detach()
return hook
self.hooks.append(block.register_forward_hook(make_hook(i)))
# Decoder output
def hook_dec_out(module, inp, out):
self.captures['dec_out'] = out.detach()
self.hooks.append(m.dec_out.register_forward_hook(hook_dec_out))
# Boundary smooth
def hook_boundary(module, inp, out):
self.captures['boundary_in'] = inp[0].detach()
self.captures['boundary_out'] = out.detach()
self.hooks.append(m.boundary_smooth.register_forward_hook(hook_boundary))
def clear(self):
self.captures.clear()
def remove_hooks(self):
for h in self.hooks:
h.remove()
self.hooks.clear()
@torch.no_grad()
def run(self, images):
"""Forward pass with full interception."""
self.clear()
out = self.model(images)
# Also capture SVD components from the output
self.captures['svd_U'] = out['svd']['U'].detach()
self.captures['svd_S_orig'] = out['svd']['S_orig'].detach()
self.captures['svd_S'] = out['svd']['S'].detach()
self.captures['svd_Vt'] = out['svd']['Vt'].detach()
self.captures['svd_M'] = out['svd']['M'].detach()
self.captures['recon'] = out['recon'].detach()
self.captures['input'] = images.detach()
return out
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# GEOMETRIC METRICS
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def effective_rank(X):
"""Effective rank of a matrix via Shannon entropy of singular values."""
if X.dim() == 1:
X = X.unsqueeze(0)
if X.dim() == 2:
_, S, _ = torch.linalg.svd(X.float(), full_matrices=False)
else:
S = X.float()
p = S / (S.sum(-1, keepdim=True) + 1e-8)
p = p.clamp(min=1e-8)
return (-(p * p.log()).sum(-1)).exp()
def condition_number(X):
"""Condition number from singular values."""
if X.dim() < 2:
return torch.tensor(1.0)
try:
S = torch.linalg.svdvals(X.float())
return (S[..., 0] / (S[..., -1] + 1e-10)).mean().item()
except:
return float('nan')
def spearman_rank(a, b):
"""Spearman rank correlation between two flattened tensors."""
a_np = a.flatten().cpu().numpy()
b_np = b.flatten().cpu().numpy()
n = min(len(a_np), len(b_np), 100000)
if n < len(a_np):
a_np = a_np[:n]
if n < len(b_np):
b_np = b_np[:n]
try:
r, p = scipy_stats.spearmanr(a_np, b_np)
return r
except:
return float('nan')
def procrustes_alignment(A, B):
"""Procrustes alignment score between two (N, D) matrices.
Returns: rotation error (lower = more aligned), scale ratio.
"""
if A.shape != B.shape:
n = min(A.shape[0], B.shape[0])
A, B = A[:n], B[:n]
A_c = A - A.mean(0, keepdim=True)
B_c = B - B.mean(0, keepdim=True)
A_n = A_c / (A_c.norm() + 1e-8)
B_n = B_c / (B_c.norm() + 1e-8)
M = A_n.T @ B_n
U, S, Vt = torch.linalg.svd(M.float())
R = U @ Vt
aligned = B_n @ R.T
error = (A_n - aligned).pow(2).mean().item()
alignment = S.sum().item()
return {'error': error, 'alignment': alignment, 'scale_ratio': (A_c.norm() / (B_c.norm() + 1e-8)).item()}
def cosine_sim_distribution(X):
"""Pairwise cosine similarity statistics for (N, D) matrix."""
X_n = F.normalize(X.float(), dim=-1)
n = min(X_n.shape[0], 500)
X_n = X_n[:n]
sim = X_n @ X_n.T
mask = ~torch.eye(n, dtype=torch.bool, device=sim.device)
vals = sim[mask]
return {
'mean': vals.mean().item(),
'std': vals.std().item(),
'min': vals.min().item(),
'max': vals.max().item(),
'median': vals.median().item(),
}
def activation_stats(X):
"""Activation statistics for a hidden state tensor."""
X_flat = X.float().flatten()
return {
'mean': X_flat.mean().item(),
'std': X_flat.std().item(),
'min': X_flat.min().item(),
'max': X_flat.max().item(),
'abs_mean': X_flat.abs().mean().item(),
'dead_frac': (X_flat.abs() < 1e-6).float().mean().item(),
'sparsity': (X_flat == 0).float().mean().item(),
'kurtosis': ((X_flat - X_flat.mean()) / (X_flat.std() + 1e-8)).pow(4).mean().item() - 3,
}
def cayley_menger_vol2(points):
B, N, D = points.shape
pts = points.double()
gram = torch.bmm(pts, pts.transpose(1, 2))
norms = torch.diagonal(gram, dim1=1, dim2=2)
d2 = F.relu(norms.unsqueeze(2) + norms.unsqueeze(1) - 2 * gram)
cm = torch.zeros(B, N + 1, N + 1, device=points.device, dtype=torch.float64)
cm[:, 0, 1:] = 1.0; cm[:, 1:, 0] = 1.0; cm[:, 1:, 1:] = d2
k = N - 1
sign = (-1.0) ** (k + 1)
fact = math.factorial(k)
return sign * torch.linalg.det(cm) / ((2 ** k) * (fact ** 2))
def cv_of(emb, n_samples=200):
if emb.dim() != 2 or emb.shape[0] < 5:
return float('nan')
N, D = emb.shape
pool = min(N, 512)
indices = torch.stack([torch.randperm(pool, device=emb.device)[:5]
for _ in range(n_samples)])
vol2 = cayley_menger_vol2(emb[:pool][indices])
valid = vol2 > 1e-20
if valid.sum() < 10:
return float('nan')
vols = vol2[valid].sqrt()
return (vols.std() / (vols.mean() + 1e-8)).item()
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# ATTENTION ANALYSIS
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def analyze_attention(qkv, n_heads, D):
"""Analyze attention patterns from QKV tensor."""
# qkv shape varies: (B, N, 3*D) or (B*N, 3*D)
if qkv.dim() == 3:
qkv = qkv.reshape(-1, qkv.shape[-1])
BN, three_D = qkv.shape
# We need B and N β estimate from context
# For now analyze the raw QKV statistics
head_dim = D // n_heads
qkv_r = qkv.reshape(-1, 3, D)
q, k, v = qkv_r[:, 0], qkv_r[:, 1], qkv_r[:, 2]
return {
'q_norm_mean': q.norm(dim=-1).mean().item(),
'k_norm_mean': k.norm(dim=-1).mean().item(),
'v_norm_mean': v.norm(dim=-1).mean().item(),
'q_std': q.std().item(),
'k_std': k.std().item(),
'v_std': v.std().item(),
'qk_cosine': F.cosine_similarity(q, k, dim=-1).mean().item(),
'qv_cosine': F.cosine_similarity(q, v, dim=-1).mean().item(),
'kv_cosine': F.cosine_similarity(k, v, dim=-1).mean().item(),
}
def analyze_cross_attn_delta(S_in, S_out, alpha_logits, max_alpha=0.2):
"""Analyze what cross-attention actually changed."""
delta = S_out - S_in
alpha = max_alpha * torch.sigmoid(alpha_logits)
return {
'delta_abs_mean': delta.abs().mean().item(),
'delta_abs_max': delta.abs().max().item(),
'delta_std': delta.std().item(),
'delta_per_mode': delta.abs().mean(dim=(0, 1)).tolist(),
'alpha_values': alpha.tolist(),
'alpha_mean': alpha.mean().item(),
'relative_change': (delta.abs().mean() / (S_in.abs().mean() + 1e-8)).item(),
'sign_agreement': (delta.sign() == S_in.sign()).float().mean().item(),
}
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# SVD BOTTLENECK ANALYSIS
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def analyze_svd_bottleneck(U, S, Vt, M):
"""Deep analysis of the SVD bottleneck."""
B, N, V, D = U.shape
# Singular value spectrum
S_flat = S.reshape(-1, D)
S_mean = S_flat.mean(0)
S_std = S_flat.std(0)
# Reconstruction quality: M vs U @ diag(S) @ Vt
M_recon = torch.bmm(
U.reshape(B*N, V, D) * S.reshape(B*N, D).unsqueeze(1),
Vt.reshape(B*N, D, D))
M_flat = M.reshape(B*N, V, D)
recon_error = (M_recon - M_flat).pow(2).mean().item()
# Orthogonality of U columns
U_flat = U.reshape(B*N, V, D)
UtU = torch.bmm(U_flat.transpose(1, 2), U_flat)
eye = torch.eye(D, device=U.device).unsqueeze(0)
ortho_error = (UtU - eye).pow(2).mean().item()
# Orthogonality of Vt rows
Vt_flat = Vt.reshape(B*N, D, D)
VtVt = torch.bmm(Vt_flat, Vt_flat.transpose(1, 2))
vt_ortho_error = (VtVt - eye).pow(2).mean().item()
# Condition number of M
cond = (S_mean[0] / (S_mean[-1] + 1e-8)).item()
# Effective rank
erank = effective_rank(S_flat).mean().item()
# Energy distribution
S2 = S_flat.pow(2)
energy = S2 / (S2.sum(-1, keepdim=True) + 1e-8)
energy_mean = energy.mean(0)
# Sphere radius (norm of M rows after normalization)
M_norms = M_flat.reshape(B*N*V, D).norm(dim=-1)
return {
'S_mean': S_mean.tolist(),
'S_std': S_std.tolist(),
'S_ratio': (S_mean[0] / (S_mean[-1] + 1e-8)).item(),
'condition_number': cond,
'effective_rank': erank,
'recon_error': recon_error,
'U_orthogonality_error': ortho_error,
'Vt_orthogonality_error': vt_ortho_error,
'energy_per_mode': energy_mean.tolist(),
'sphere_radius_mean': M_norms.mean().item(),
'sphere_radius_std': M_norms.std().item(),
}
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# ENCODER/DECODER SYMMETRY ANALYSIS
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def analyze_enc_dec_symmetry(interceptor):
"""Compare encoder and decoder at each stage."""
caps = interceptor.captures
results = {}
model = interceptor.model
depth = len(model.enc_blocks)
for i in range(depth):
enc_key = f'enc_block_{i}'
dec_key = f'dec_block_{depth - 1 - i}' # Mirror order
if enc_key in caps and dec_key in caps:
enc = caps[enc_key].reshape(-1, caps[enc_key].shape[-1])
dec = caps[dec_key].reshape(-1, caps[dec_key].shape[-1])
n = min(enc.shape[0], dec.shape[0], 10000)
enc_s, dec_s = enc[:n], dec[:n]
results[f'block_{i}_spearman'] = spearman_rank(enc_s, dec_s)
results[f'block_{i}_cosine'] = F.cosine_similarity(
enc_s.mean(0, keepdim=True), dec_s.mean(0, keepdim=True)).item()
proc = procrustes_alignment(enc_s[:500].cpu(), dec_s[:500].cpu())
results[f'block_{i}_procrustes_error'] = proc['error']
results[f'block_{i}_procrustes_alignment'] = proc['alignment']
return results
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# INFORMATION FLOW ANALYSIS
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def analyze_information_flow(interceptor):
"""Track how information transforms through the pipeline."""
caps = interceptor.captures
results = {}
# Input β Encoder output
if 'input' in caps and 'enc_out_raw' in caps:
inp = caps['input'].reshape(caps['input'].shape[0], -1)
enc = caps['enc_out_raw'].reshape(caps['enc_out_raw'].shape[0], -1)
n = min(inp.shape[0], enc.shape[0])
results['input_to_enc_spearman'] = spearman_rank(inp[:n], enc[:n])
# Pre-SVD M β Post-SVD S
if 'svd_M' in caps and 'svd_S_orig' in caps:
M = caps['svd_M'].reshape(-1, caps['svd_M'].shape[-1])
S = caps['svd_S_orig'].reshape(-1, caps['svd_S_orig'].shape[-1])
results['M_to_S_compression'] = M.shape[-1] / S.shape[-1]
# How much variance does S capture of M?
M_var = M.var().item()
S_var = S.var().item()
results['M_variance'] = M_var
results['S_variance'] = S_var
results['variance_retention'] = S_var / (M_var + 1e-8)
# S_orig β S (cross-attention effect)
if 'svd_S_orig' in caps and 'svd_S' in caps:
S_orig = caps['svd_S_orig']
S_coord = caps['svd_S']
delta = (S_coord - S_orig).abs()
results['cross_attn_total_delta'] = delta.mean().item()
results['cross_attn_max_delta'] = delta.max().item()
results['cross_attn_relative_delta'] = (delta.mean() / (S_orig.abs().mean() + 1e-8)).item()
# Decoder output β Reconstruction
if 'dec_out' in caps and 'recon' in caps:
dec = caps['dec_out'].reshape(-1)
recon = caps['recon'].reshape(-1)
n = min(len(dec), len(recon), 100000)
results['dec_to_recon_spearman'] = spearman_rank(dec[:n], recon[:n])
# Input β Reconstruction (end-to-end)
if 'input' in caps and 'recon' in caps:
inp = caps['input'].reshape(-1)
recon = caps['recon'].reshape(-1)
n = min(len(inp), len(recon), 100000)
results['end_to_end_spearman'] = spearman_rank(inp[:n], recon[:n])
results['end_to_end_mse'] = F.mse_loss(
caps['recon'], caps['input']).item()
# Boundary smooth effect
if 'boundary_in' in caps and 'boundary_out' in caps:
b_in = caps['boundary_in']
b_out = caps['boundary_out']
b_delta = (b_out - b_in).abs()
results['boundary_delta_mean'] = b_delta.mean().item()
results['boundary_delta_max'] = b_delta.max().item()
results['boundary_relative'] = (b_delta.mean() / (b_in.abs().mean() + 1e-8)).item()
return results
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# CV AT EVERY STAGE
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def analyze_cv_at_stages(interceptor):
"""Compute CV at key representation stages."""
caps = interceptor.captures
results = {}
stages = [
('enc_in', 'Encoder input projection'),
('enc_block_0', 'Encoder block 0'),
('enc_block_1', 'Encoder block 1'),
('enc_block_2', 'Encoder block 2'),
('enc_block_3', 'Encoder block 3'),
('svd_S_orig', 'SVD S (pre cross-attn)'),
('svd_S', 'SVD S (post cross-attn)'),
('dec_in', 'Decoder input projection'),
('dec_block_0', 'Decoder block 0'),
('dec_block_3', 'Decoder block 3'),
]
for key, name in stages:
if key not in caps:
continue
X = caps[key]
# Reshape to (N, D) for CV computation
if X.dim() == 4: # (B, N, V, D)
X = X.reshape(-1, X.shape[-1])
elif X.dim() == 3: # (B, N, D) or (B*N, ...)
X = X.reshape(-1, X.shape[-1])
elif X.dim() == 2:
pass
else:
continue
if X.shape[-1] > 50:
# PCA down for CV computation
X_c = X - X.mean(0, keepdim=True)
_, _, V = torch.linalg.svd(X_c[:min(1000, len(X_c))].float(), full_matrices=False)
X = X @ V[:16].T
try:
cv = cv_of(X[:500].float())
results[key] = {'cv': cv, 'name': name, 'dim': X.shape[-1]}
except:
results[key] = {'cv': float('nan'), 'name': name, 'dim': X.shape[-1]}
return results
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# WEIGHT ANALYSIS
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def analyze_weights(model):
"""Analyze model weight properties."""
results = {}
for name, param in model.named_parameters():
p = param.data.float()
entry = {
'shape': list(p.shape),
'norm': p.norm().item(),
'mean': p.mean().item(),
'std': p.std().item(),
'abs_mean': p.abs().mean().item(),
'sparsity': (p.abs() < 1e-6).float().mean().item(),
}
if p.dim() == 2:
entry['condition'] = condition_number(p)
entry['erank'] = effective_rank(p).item()
results[name] = entry
return results
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# NOISE TYPE FINGERPRINT ANALYSIS
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _gen_noise(t, s):
"""Minimal noise gen for fingerprint analysis."""
if t == 0: return torch.randn(3, s, s)
elif t == 1: return torch.rand(3, s, s) * 2 - 1
elif t == 4:
w = torch.randn(3, s, s)
S = torch.fft.rfft2(w)
h, ww = s, s
fy = torch.fft.fftfreq(h).unsqueeze(-1).expand(-1, ww // 2 + 1)
fx = torch.fft.rfftfreq(ww).unsqueeze(0).expand(h, -1)
img = torch.fft.irfft2(S / torch.sqrt(fx**2 + fy**2).clamp(min=1e-8), s=(h, ww))
return img / (img.std() + 1e-8)
elif t == 6:
return torch.where(torch.rand(3, s, s) > 0.5,
torch.ones(3, s, s) * 2, -torch.ones(3, s, s) * 2) + torch.randn(3, s, s) * 0.1
elif t == 13:
return torch.tan(math.pi * (torch.rand(3, s, s) - 0.5)).clamp(-3, 3)
return torch.randn(3, s, s)
def analyze_noise_fingerprints(interceptor, device, n_per=16):
"""How do different noise types look at each pipeline stage?"""
results = {}
type_names = {0: 'gaussian', 1: 'uniform', 4: 'pink', 6: 'salt_pepper', 13: 'cauchy'}
for t, name in type_names.items():
imgs = torch.stack([_gen_noise(t, 64).clamp(-4, 4) for _ in range(n_per)]).to(device)
interceptor.run(imgs)
caps = interceptor.captures
entry = {}
# S profile per noise type
if 'svd_S' in caps:
S = caps['svd_S']
entry['S_mean'] = S.mean(dim=(0, 1)).tolist()
entry['S_std'] = S.std(dim=(0, 1)).tolist()
entry['erank'] = effective_rank(S.reshape(-1, S.shape[-1])).mean().item()
# Encoder hidden activation pattern
if 'enc_block_3' in caps:
h = caps['enc_block_3']
entry['enc_final_abs_mean'] = h.abs().mean().item()
entry['enc_final_dead_frac'] = (h.abs() < 1e-6).float().mean().item()
# Cross-attention delta
if 'svd_S_orig' in caps and 'svd_S' in caps:
delta = (caps['svd_S'] - caps['svd_S_orig']).abs()
entry['cross_attn_delta'] = delta.mean().item()
# Reconstruction MSE
if 'recon' in caps:
entry['recon_mse'] = F.mse_loss(caps['recon'], imgs).item()
results[name] = entry
return results
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# FULL BATTERY
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@torch.no_grad()
def run_full_battery(model, device, img_size=64, n_samples=64):
"""Run the complete center-mass interception battery."""
print("\n" + "=" * 70)
print("FRECKLES CENTER-MASS INTERCEPTION")
print("Full Geometric Alignment Battery")
print("=" * 70)
interceptor = PipelineInterceptor(model)
D = model.D
ps = model.patch_size
# Generate test data (mixed noise types)
imgs = []
for t in range(16):
for _ in range(n_samples // 16):
imgs.append(_gen_noise(t % 5 * 3, img_size).clamp(-4, 4))
imgs = torch.stack(imgs[:n_samples]).to(device)
t0 = time.time()
all_results = {}
# ββ 1. Forward with interception ββ
print("\n [1/8] Forward pass with interception...")
out = interceptor.run(imgs)
print(f" Captured {len(interceptor.captures)} activation tensors")
for k, v in interceptor.captures.items():
print(f" {k:30s} {str(list(v.shape)):>30s}")
# ββ 2. Activation statistics at every stage ββ
print("\n [2/8] Activation statistics...")
act_stats = {}
for key, tensor in interceptor.captures.items():
if tensor.numel() > 0:
act_stats[key] = activation_stats(tensor)
all_results['activation_stats'] = act_stats
for key in ['enc_in', 'enc_block_3', 'svd_S_orig', 'svd_S', 'dec_in', 'dec_block_3', 'dec_out']:
if key in act_stats:
s = act_stats[key]
print(f" {key:25s} mean={s['mean']:+.4f} std={s['std']:.4f} "
f"dead={s['dead_frac']:.3f} kurt={s['kurtosis']:.2f}")
# ββ 3. SVD bottleneck analysis ββ
print("\n [3/8] SVD bottleneck analysis...")
caps = interceptor.captures
svd_analysis = analyze_svd_bottleneck(
caps['svd_U'], caps['svd_S_orig'], caps['svd_Vt'], caps['svd_M'])
all_results['svd_bottleneck'] = svd_analysis
print(f" S spectrum: {['%.3f' % s for s in svd_analysis['S_mean']]}")
print(f" S ratio (S0/SD): {svd_analysis['S_ratio']:.3f}")
print(f" Effective rank: {svd_analysis['effective_rank']:.3f}")
print(f" U orthogonality error: {svd_analysis['U_orthogonality_error']:.6f}")
print(f" Vt orthogonality error: {svd_analysis['Vt_orthogonality_error']:.6f}")
print(f" Energy per mode: {['%.3f' % e for e in svd_analysis['energy_per_mode']]}")
print(f" Sphere radius: {svd_analysis['sphere_radius_mean']:.4f} Β± {svd_analysis['sphere_radius_std']:.4f}")
# ββ 4. Cross-attention analysis ββ
print("\n [4/8] Cross-attention analysis...")
ca_results = {}
for i in range(len(model.cross_attn)):
in_key = f'cross_attn_{i}_in'
out_key = f'cross_attn_{i}_out'
qkv_key = f'cross_attn_{i}_qkv'
if in_key in caps and out_key in caps:
delta = analyze_cross_attn_delta(
caps[in_key], caps[out_key],
model.cross_attn[i].alpha_logits)
ca_results[f'layer_{i}_delta'] = delta
print(f" Layer {i}: delta={delta['delta_abs_mean']:.6f} "
f"relative={delta['relative_change']:.4f} "
f"alpha={delta['alpha_values']}")
if qkv_key in caps:
attn = analyze_attention(caps[qkv_key], model.cross_attn[i].n_heads, D)
ca_results[f'layer_{i}_attention'] = attn
print(f" Layer {i} QKV: q_norm={attn['q_norm_mean']:.3f} "
f"qk_cos={attn['qk_cosine']:.3f} "
f"kv_cos={attn['kv_cosine']:.3f}")
all_results['cross_attention'] = ca_results
# ββ 5. Encoder/Decoder symmetry ββ
print("\n [5/8] Encoder/decoder symmetry...")
sym = analyze_enc_dec_symmetry(interceptor)
all_results['enc_dec_symmetry'] = sym
for key, val in sorted(sym.items()):
print(f" {key}: {val:.4f}")
# ββ 6. Information flow ββ
print("\n [6/8] Information flow analysis...")
flow = analyze_information_flow(interceptor)
all_results['information_flow'] = flow
for key, val in sorted(flow.items()):
print(f" {key}: {val:.6f}")
# ββ 7. CV at every stage ββ
print("\n [7/8] CV at pipeline stages...")
cv_stages = analyze_cv_at_stages(interceptor)
all_results['cv_stages'] = cv_stages
for key, data in cv_stages.items():
print(f" {data['name']:30s} CV={data['cv']:.4f} dim={data['dim']}")
# ββ 8. Noise type fingerprints ββ
print("\n [8/8] Noise type fingerprints...")
fingerprints = analyze_noise_fingerprints(interceptor, device)
all_results['noise_fingerprints'] = fingerprints
for name, fp in fingerprints.items():
print(f" {name:15s} S={['%.2f' % s for s in fp.get('S_mean', [])]}"
f" er={fp.get('erank', 0):.2f}"
f" Ξca={fp.get('cross_attn_delta', 0):.5f}"
f" mse={fp.get('recon_mse', 0):.6f}")
# ββ Weight analysis ββ
print("\n [BONUS] Weight analysis...")
weights = analyze_weights(model)
all_results['weights'] = weights
total_params = sum(p.numel() for p in model.parameters())
total_sparse = sum(v['sparsity'] * np.prod(v['shape']) for v in weights.values())
print(f" Total params: {total_params:,}")
print(f" Effective sparsity: {total_sparse / total_params:.4f}")
# Key weight matrices
for name in ['enc_out.weight', 'dec_in.weight', 'dec_out.weight']:
if name in weights:
w = weights[name]
print(f" {name:25s} norm={w['norm']:.3f} cond={w.get('condition', 'N/A')}"
f" erank={w.get('erank', 'N/A')}")
elapsed = time.time() - t0
interceptor.remove_hooks()
print(f"\n{'=' * 70}")
print(f"BATTERY COMPLETE β {elapsed:.1f}s")
print(f"{'=' * 70}")
return all_results
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# LOAD + RUN
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def load_freckles(model_path=None, hf_version=None, device='cuda'):
from geolip_svae import load_model
if hf_version:
return load_model(hf_version=hf_version, device=device)
else:
return load_model(checkpoint_path=model_path, device=device)
if __name__ == "__main__":
MODEL = 'v41_freckles_256'
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
model, cfg = load_freckles(hf_version=MODEL, device=device)
results = run_full_battery(model, device, img_size=cfg.get('img_size', 64))
# Save
def to_json(obj):
if isinstance(obj, (torch.Tensor, np.ndarray)):
if hasattr(obj, 'tolist'):
return obj.tolist()
return float(obj)
if isinstance(obj, dict):
return {str(k): to_json(v) for k, v in obj.items()}
if isinstance(obj, (list, tuple)):
return [to_json(v) for v in obj]
if isinstance(obj, float) and (math.isnan(obj) or math.isinf(obj)):
return str(obj)
return obj
out_path = f'freckles_observer_{MODEL}.json'
with open(out_path, 'w') as f:
json.dump(to_json(results), f, indent=2)
print(f" Saved: {out_path}") |