Image-to-Image
Transformers
Safetensors
patchsvae
image-reconstruction
svd
geometric-deep-learning
autoencoder
omega-tokens
geolip
custom_code
Instructions to use AbstractPhil/svae-fresnel-128 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use AbstractPhil/svae-fresnel-128 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-to-image", model="AbstractPhil/svae-fresnel-128", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("AbstractPhil/svae-fresnel-128", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 11,363 Bytes
7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb 7cb73cd a3d42fb | 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 | """PatchSVAE model for HuggingFace AutoModel.
Usage:
from transformers import AutoConfig, AutoModel
config = AutoConfig.from_pretrained("AbstractPhil/svae-fresnel-128", trust_remote_code=True)
model = AutoModel.from_pretrained("AbstractPhil/svae-fresnel-128", trust_remote_code=True)
# Full reconstruction
output = model(images)
recon = output["recon"] # (B, 3, 128, 128)
latent = output["latent"] # (B, 16, 8, 8) omega tokens
# Encode to omega tokens
omega = model.encode(images) # (B, 16, 8, 8)
# Full SVD decomposition
svd = model.encode_full(images) # dict with U, S, Vt, M per patch
"""
import math
import torch
import torch.nn as nn
import torch.nn.functional as F
from typing import Optional, Dict, Union
from transformers import PreTrainedModel
from .configuration_patchsvae import PatchSVAEConfig
# ββ SVD Backend (self-contained, no external deps required) ββββββ
try:
from geolip_core.linalg.eigh import FLEigh, _FL_MAX_N
_HAS_FL = True
except ImportError:
_HAS_FL = False
def _gram_eigh_svd(A):
"""Thin SVD via Gram + eigh in fp64."""
orig_dtype = A.dtype
with torch.amp.autocast('cuda', enabled=False):
A_d = A.double()
G = torch.bmm(A_d.transpose(1, 2), A_d)
eigenvalues, V = torch.linalg.eigh(G)
eigenvalues = eigenvalues.flip(-1)
V = V.flip(-1)
S = torch.sqrt(eigenvalues.clamp(min=1e-24))
U = torch.bmm(A_d, V) / S.unsqueeze(1).clamp(min=1e-16)
Vh = V.transpose(-2, -1).contiguous()
return U.to(orig_dtype), S.to(orig_dtype), Vh.to(orig_dtype)
def _svd_fp64(A):
"""Auto-dispatch: FL eigh for N<=12, Gram eigh otherwise."""
B, M, N = A.shape
if _HAS_FL and N <= _FL_MAX_N and A.is_cuda:
orig_dtype = A.dtype
with torch.amp.autocast('cuda', enabled=False):
A_d = A.double()
G = torch.bmm(A_d.transpose(1, 2), A_d)
eigenvalues, V = FLEigh()(G.float())
eigenvalues = eigenvalues.double().flip(-1)
V = V.double().flip(-1)
S = torch.sqrt(eigenvalues.clamp(min=1e-24))
U = torch.bmm(A_d, V) / S.unsqueeze(1).clamp(min=1e-16)
Vh = V.transpose(-2, -1).contiguous()
return U.to(orig_dtype), S.to(orig_dtype), Vh.to(orig_dtype)
else:
return _gram_eigh_svd(A)
# ββ Patch Utilities ββββββββββββββββββββββββββββββββββββββββββββββ
def _extract_patches(images, patch_size):
B, C, H, W = images.shape
gh, gw = H // patch_size, W // patch_size
x = images.reshape(B, C, gh, patch_size, gw, patch_size)
x = x.permute(0, 2, 4, 1, 3, 5)
return x.reshape(B, gh * gw, C * patch_size * patch_size), gh, gw
def _stitch_patches(patches, gh, gw, patch_size):
B = patches.shape[0]
x = patches.reshape(B, gh, gw, 3, patch_size, patch_size)
x = x.permute(0, 3, 1, 4, 2, 5)
return x.reshape(B, 3, gh * patch_size, gw * patch_size)
# ββ Components βββββββββββββββββββββββββββββββββββββββββββββββββββ
class _BoundarySmooth(nn.Module):
def __init__(self, channels=3, mid=16):
super().__init__()
self.net = nn.Sequential(
nn.Conv2d(channels, mid, 3, padding=1),
nn.GELU(),
nn.Conv2d(mid, channels, 3, padding=1),
)
nn.init.zeros_(self.net[-1].weight)
nn.init.zeros_(self.net[-1].bias)
def forward(self, x):
return x + self.net(x)
class _SpectralCrossAttention(nn.Module):
def __init__(self, D, n_heads=4, max_alpha=0.2, alpha_init=-2.0):
super().__init__()
self.n_heads = n_heads
self.head_dim = D // n_heads
self.max_alpha = max_alpha
assert D % n_heads == 0
self.qkv = nn.Linear(D, 3 * D)
self.out_proj = nn.Linear(D, D)
self.norm = nn.LayerNorm(D)
self.scale = self.head_dim ** -0.5
self.alpha_logits = nn.Parameter(torch.full((D,), alpha_init))
@property
def alpha(self):
return self.max_alpha * torch.sigmoid(self.alpha_logits)
def forward(self, S):
B, N, D = S.shape
S_normed = self.norm(S)
qkv = self.qkv(S_normed).reshape(B, N, 3, self.n_heads, self.head_dim)
qkv = qkv.permute(2, 0, 3, 1, 4)
q, k, v = qkv[0], qkv[1], qkv[2]
attn = (q @ k.transpose(-2, -1)) * self.scale
attn = attn.softmax(dim=-1)
out = (attn @ v).transpose(1, 2).reshape(B, N, D)
gate = torch.tanh(self.out_proj(out))
return S * (1.0 + self.alpha.unsqueeze(0).unsqueeze(0) * gate)
# ββ Model ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class PatchSVAEModel(PreTrainedModel):
"""Patch-based SVD Autoencoder β The Fresnel Geometric Compression Lens.
Decomposes images into patches, encodes each to a sphere-normalized
matrix, performs SVD, coordinates spectra via cross-attention,
and reconstructs with 99.993% fidelity.
The spectral vectors S form omega tokens: modality-agnostic,
geometrically structured, universal representations.
"""
config_class = PatchSVAEConfig
_tied_weights_keys = []
def __init__(self, config: PatchSVAEConfig):
super().__init__(config)
V = config.matrix_v
D = config.D
hidden = config.hidden
depth = config.depth
ps = config.patch_size
patch_dim = 3 * ps * ps
mat_dim = V * D
# Encoder
self.enc_in = nn.Linear(patch_dim, hidden)
self.enc_blocks = nn.ModuleList([
nn.Sequential(nn.LayerNorm(hidden), nn.Linear(hidden, hidden),
nn.GELU(), nn.Linear(hidden, hidden))
for _ in range(depth)
])
self.enc_out = nn.Linear(hidden, mat_dim)
nn.init.orthogonal_(self.enc_out.weight)
# Decoder
self.dec_in = nn.Linear(mat_dim, hidden)
self.dec_blocks = nn.ModuleList([
nn.Sequential(nn.LayerNorm(hidden), nn.Linear(hidden, hidden),
nn.GELU(), nn.Linear(hidden, hidden))
for _ in range(depth)
])
self.dec_out = nn.Linear(hidden, patch_dim)
# Cross-attention
self.cross_attn = nn.ModuleList([
_SpectralCrossAttention(D, n_heads=min(4, D),
max_alpha=config.max_alpha,
alpha_init=config.alpha_init)
for _ in range(config.n_cross_layers)
])
# Boundary smoothing
self.boundary_smooth = _BoundarySmooth(channels=3, mid=16)
self.post_init()
def _encode_patches_to_svd(self, patches):
B, N, _ = patches.shape
V, D = self.config.matrix_v, self.config.D
flat = patches.reshape(B * N, -1)
h = F.gelu(self.enc_in(flat))
for block in self.enc_blocks:
h = h + block(h)
M = self.enc_out(h).reshape(B * N, V, D)
M = F.normalize(M, dim=-1)
U, S, Vt = _svd_fp64(M)
U = U.reshape(B, N, V, D)
S = S.reshape(B, N, D)
Vt = Vt.reshape(B, N, D, D)
M = M.reshape(B, N, V, D)
S_coord = S
for layer in self.cross_attn:
S_coord = layer(S_coord)
return {"U": U, "S_orig": S, "S": S_coord, "Vt": Vt, "M": M}
def _decode_from_svd(self, U, S, Vt):
B, N, V, D = U.shape
U_flat = U.reshape(B * N, V, D)
S_flat = S.reshape(B * N, D)
Vt_flat = Vt.reshape(B * N, D, D)
M_hat = torch.bmm(U_flat * S_flat.unsqueeze(1), Vt_flat)
h = F.gelu(self.dec_in(M_hat.reshape(B * N, -1)))
for block in self.dec_blocks:
h = h + block(h)
return self.dec_out(h).reshape(B, N, -1)
def encode(self, pixel_values: torch.Tensor) -> torch.Tensor:
"""Encode images to omega tokens (spatial latent).
Args:
pixel_values: (B, 3, H, W) normalized images
Returns:
(B, D, gh, gw) spectral latent β omega tokens
For 128Γ128: (B, 16, 8, 8) = 1024 values, 48:1 compression
"""
ps = self.config.patch_size
patches, gh, gw = _extract_patches(pixel_values, ps)
svd = self._encode_patches_to_svd(patches)
S = svd["S"] # (B, N, D)
return S.permute(0, 2, 1).reshape(S.shape[0], self.config.D, gh, gw)
def encode_full(self, pixel_values: torch.Tensor) -> Dict:
"""Encode to full SVD decomposition per patch.
Returns dict with U, S_orig, S, Vt, M, gh, gw.
"""
ps = self.config.patch_size
patches, gh, gw = _extract_patches(pixel_values, ps)
svd = self._encode_patches_to_svd(patches)
svd["gh"] = gh
svd["gw"] = gw
return svd
def decode(self, latent: torch.Tensor,
U: Optional[torch.Tensor] = None,
Vt: Optional[torch.Tensor] = None) -> torch.Tensor:
"""Decode from omega tokens to images.
Args:
latent: (B, D, gh, gw) spectral latent
U: optional (B, N, V, D) for lossless reconstruction
Vt: optional (B, N, D, D) for lossless reconstruction
Returns:
(B, 3, H, W) reconstructed image
"""
B, D, gh, gw = latent.shape
N = gh * gw
S = latent.reshape(B, D, N).permute(0, 2, 1)
if U is None or Vt is None:
V = self.config.matrix_v
U = torch.eye(V, D, device=latent.device, dtype=latent.dtype)
U = U.unsqueeze(0).unsqueeze(0).expand(B, N, -1, -1)
Vt = torch.eye(D, device=latent.device, dtype=latent.dtype)
Vt = Vt.unsqueeze(0).unsqueeze(0).expand(B, N, -1, -1)
decoded = self._decode_from_svd(U, S, Vt)
recon = _stitch_patches(decoded, gh, gw, self.config.patch_size)
return self.boundary_smooth(recon)
def forward(
self,
pixel_values: torch.Tensor,
**kwargs,
) -> Dict[str, torch.Tensor]:
"""Full encode β SVD β coordinate β decode pipeline.
Args:
pixel_values: (B, 3, H, W) normalized images
Returns:
dict with "recon", "latent", "svd" keys
"""
ps = self.config.patch_size
patches, gh, gw = _extract_patches(pixel_values, ps)
svd = self._encode_patches_to_svd(patches)
decoded = self._decode_from_svd(svd["U"], svd["S"], svd["Vt"])
recon = _stitch_patches(decoded, gh, gw, ps)
recon = self.boundary_smooth(recon)
S = svd["S"]
latent = S.permute(0, 2, 1).reshape(S.shape[0], self.config.D, gh, gw)
return {"recon": recon, "latent": latent, "svd": svd}
@staticmethod
def effective_rank(S):
p = S / (S.sum(-1, keepdim=True) + 1e-8)
p = p.clamp(min=1e-8)
return (-(p * p.log()).sum(-1)).exp()
# Register for AutoClass β this is what makes AutoModel.from_pretrained work
PatchSVAEConfig.register_for_auto_class()
PatchSVAEModel.register_for_auto_class("AutoModel") |