File size: 14,846 Bytes
2bbfd50 | 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 | """
MobiusNet - CIFAR-100 (Dynamic Stages)
======================================
Properly handles variable stage counts.
Author: AbstractPhil
https://huggingface.co/AbstractPhil/mobiusnet
License: Apache 2.0
"""
import math
import torch
import torch.nn as nn
import torch.nn.functional as F
from torch import Tensor
from typing import Tuple
from torchvision import datasets, transforms
from torch.utils.data import DataLoader
from tqdm.auto import tqdm
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
print(f"Device: {device}")
# ============================================================================
# MÖBIUS LENS
# ============================================================================
class MobiusLens(nn.Module):
def __init__(
self,
dim: int,
layer_idx: int,
total_layers: int,
scale_range: Tuple[float, float] = (1.0, 9.0),
):
super().__init__()
self.t = layer_idx / max(total_layers - 1, 1)
scale_span = scale_range[1] - scale_range[0]
step = scale_span / max(total_layers, 1)
scale_low = scale_range[0] + self.t * scale_span
scale_high = scale_low + step
self.register_buffer('scales', torch.tensor([scale_low, scale_high]))
# TWIST IN
self.twist_in_angle = nn.Parameter(torch.tensor(self.t * math.pi))
self.twist_in_proj = nn.Linear(dim, dim, bias=False)
nn.init.orthogonal_(self.twist_in_proj.weight)
# CENTER LENS
self.omega = nn.Parameter(torch.tensor(math.pi))
self.alpha = nn.Parameter(torch.tensor(1.5))
self.phase_l = nn.Parameter(torch.zeros(2))
self.drift_l = nn.Parameter(torch.ones(2))
self.phase_m = nn.Parameter(torch.zeros(2))
self.drift_m = nn.Parameter(torch.zeros(2))
self.phase_r = nn.Parameter(torch.zeros(2))
self.drift_r = nn.Parameter(-torch.ones(2))
self.accum_weights = nn.Parameter(torch.tensor([0.4, 0.2, 0.4]))
self.xor_weight = nn.Parameter(torch.tensor(0.7))
# TWIST OUT
self.twist_out_angle = nn.Parameter(torch.tensor(-self.t * math.pi))
self.twist_out_proj = nn.Linear(dim, dim, bias=False)
nn.init.orthogonal_(self.twist_out_proj.weight)
def _twist_in(self, x: Tensor) -> Tensor:
cos_t = torch.cos(self.twist_in_angle)
sin_t = torch.sin(self.twist_in_angle)
return x * cos_t + self.twist_in_proj(x) * sin_t
def _center_lens(self, x: Tensor) -> Tensor:
x_norm = torch.tanh(x)
t = x_norm.abs().mean(dim=-1, keepdim=True).unsqueeze(-2)
x_exp = x_norm.unsqueeze(-2)
s = self.scales.view(-1, 1)
def wave(phase, drift):
a = self.alpha.abs() + 0.1
pos = s * self.omega * (x_exp + drift.view(-1, 1) * t) + phase.view(-1, 1)
return torch.exp(-a * torch.sin(pos).pow(2)).prod(dim=-2)
L = wave(self.phase_l, self.drift_l)
M = wave(self.phase_m, self.drift_m)
R = wave(self.phase_r, self.drift_r)
w = torch.softmax(self.accum_weights, dim=0)
xor_w = torch.sigmoid(self.xor_weight)
xor_comp = (L + R - 2 * L * R).abs()
and_comp = L * R
lr = xor_w * xor_comp + (1 - xor_w) * and_comp
gate = w[0] * L + w[1] * M + w[2] * R
gate = gate * (0.5 + 0.5 * lr)
gate = gate / (gate.mean() + 1e-6) * 0.5
return x * gate.clamp(0, 1)
def _twist_out(self, x: Tensor) -> Tensor:
cos_t = torch.cos(self.twist_out_angle)
sin_t = torch.sin(self.twist_out_angle)
return x * cos_t + self.twist_out_proj(x) * sin_t
def forward(self, x: Tensor) -> Tensor:
return self._twist_out(self._center_lens(self._twist_in(x)))
# ============================================================================
# MÖBIUS CONV BLOCK
# ============================================================================
class MobiusConvBlock(nn.Module):
def __init__(
self,
channels: int,
layer_idx: int,
total_layers: int,
scale_range: Tuple[float, float] = (1.0, 9.0),
reduction: float = 0.5,
):
super().__init__()
self.conv = nn.Sequential(
nn.Conv2d(channels, channels, 3, padding=1, groups=channels, bias=False),
nn.Conv2d(channels, channels, 1, bias=False),
nn.BatchNorm2d(channels),
)
self.lens = MobiusLens(channels, layer_idx, total_layers, scale_range)
third = channels // 3
which_third = layer_idx % 3
mask = torch.ones(channels)
start = which_third * third
end = start + third + (channels % 3 if which_third == 2 else 0)
mask[start:end] = reduction
self.register_buffer('thirds_mask', mask.view(1, -1, 1, 1))
self.residual_weight = nn.Parameter(torch.tensor(0.9))
def forward(self, x: Tensor) -> Tensor:
identity = x
h = self.conv(x)
B, D, H, W = h.shape
h = h.permute(0, 2, 3, 1)
h = self.lens(h)
h = h.permute(0, 3, 1, 2)
h = h * self.thirds_mask
rw = torch.sigmoid(self.residual_weight)
return rw * identity + (1 - rw) * h
# ============================================================================
# MÖBIUS NET - DYNAMIC STAGES
# ============================================================================
class MobiusNet(nn.Module):
"""
Pure conv with Möbius topology.
Dynamic number of stages based on len(depths).
"""
def __init__(
self,
in_chans: int = 3,
num_classes: int = 100,
channels: Tuple[int, ...] = (64, 64, 128, 128),
depths: Tuple[int, ...] = (8, 4, 2),
scale_range: Tuple[float, float] = (0.5, 2.5),
):
super().__init__()
num_stages = len(depths)
total_layers = sum(depths)
self.total_layers = total_layers
self.scale_range = scale_range
self.channels = channels
self.depths = depths
self.num_stages = num_stages
# Ensure we have enough channel specs
channels = list(channels)
while len(channels) < num_stages:
channels.append(channels[-1])
# Stem
self.stem = nn.Sequential(
nn.Conv2d(in_chans, channels[0], 3, padding=1, bias=False),
nn.BatchNorm2d(channels[0]),
)
# Build stages dynamically
layer_idx = 0
self.stages = nn.ModuleList()
self.downsamples = nn.ModuleList()
for stage_idx in range(num_stages):
ch = channels[stage_idx]
# Stage blocks
stage = nn.ModuleList()
for _ in range(depths[stage_idx]):
stage.append(MobiusConvBlock(
ch, layer_idx, total_layers, scale_range
))
layer_idx += 1
self.stages.append(stage)
# Downsample between stages (not after last)
if stage_idx < num_stages - 1:
ch_next = channels[stage_idx + 1]
self.downsamples.append(nn.Sequential(
nn.Conv2d(ch, ch_next, 3, stride=2, padding=1, bias=False),
nn.BatchNorm2d(ch_next),
))
# Head
self.pool = nn.AdaptiveAvgPool2d(1)
self.head = nn.Linear(channels[num_stages - 1], num_classes)
def forward(self, x: Tensor) -> Tensor:
x = self.stem(x)
for i, stage in enumerate(self.stages):
for block in stage:
x = block(x)
if i < len(self.downsamples):
x = self.downsamples[i](x)
return self.head(self.pool(x).flatten(1))
def get_info(self) -> str:
return (
f"MobiusNet: channels={self.channels}, depths={self.depths}, "
f"total_layers={self.total_layers}, scale_range={self.scale_range}"
)
def get_topology_info(self) -> str:
lines = ["Möbius Ribbon Topology:"]
lines.append("=" * 60)
scale_span = self.scale_range[1] - self.scale_range[0]
layer_idx = 0
for stage_idx, depth in enumerate(self.depths):
ch = self.channels[stage_idx] if stage_idx < len(self.channels) else self.channels[-1]
for local_idx in range(depth):
t = layer_idx / max(self.total_layers - 1, 1)
scale_low = self.scale_range[0] + t * scale_span
scale_high = scale_low + scale_span / self.total_layers
lines.append(
f"Layer {layer_idx:2d} (Stage {stage_idx+1}, ch={ch:3d}): "
f"t={t:.3f}, scales=[{scale_low:.3f}, {scale_high:.3f}]"
)
layer_idx += 1
if stage_idx < self.num_stages - 1:
ch_next = self.channels[stage_idx + 1] if stage_idx + 1 < len(self.channels) else self.channels[-1]
lines.append(f" ↓ Downsample {ch} → {ch_next}")
lines.append("=" * 60)
return "\n".join(lines)
# ============================================================================
# PRESETS
# ============================================================================
PRESETS = {
'mobius_xs': {
'channels': (64, 64, 128),
'depths': (4, 2, 2),
'scale_range': (0.5, 2.5),
},
'mobius_stretched': {
'channels': (32, 64, 96, 128, 192, 256, 320, 384, 448),
'depths': (4, 4, 4, 3, 3, 3, 2, 2, 2),
'scale_range': (0.2915, 2.85),
},
'mobius_m': {
'channels': (64, 128, 256, 256),
'depths': (8, 4, 2),
'scale_range': (0.5, 3.0),
},
'mobius_deep': {
'channels': (64, 64, 128, 128),
'depths': (12, 6, 4),
'scale_range': (0.5, 3.5),
},
'mobius_wide': {
'channels': (96, 96, 192, 192),
'depths': (8, 4, 2),
'scale_range': (0.5, 2.5),
},
}
# ============================================================================
# TRAINING
# ============================================================================
def train_mobius_cifar100(
preset: str = 'mobius_s',
epochs: int = 100,
lr: float = 1e-3,
batch_size: int = 128,
use_autoaugment: bool = True,
):
config = PRESETS[preset]
print("=" * 70)
print(f"MÖBIUS NET - {preset.upper()} - CIFAR-100")
print("=" * 70)
print(f"Device: {device}")
print(f"Channels: {config['channels']}")
print(f"Depths: {config['depths']}")
print(f"Scale range: {config['scale_range']}")
print(f"AutoAugment: {use_autoaugment}")
print()
# CIFAR-100 normalization
mean = (0.5071, 0.4867, 0.4408)
std = (0.2675, 0.2565, 0.2761)
train_transforms = [
transforms.RandomCrop(32, padding=4),
transforms.RandomHorizontalFlip(),
]
if use_autoaugment:
train_transforms.append(transforms.AutoAugment(transforms.AutoAugmentPolicy.CIFAR10))
train_transforms.extend([
transforms.ToTensor(),
transforms.Normalize(mean, std),
])
train_tf = transforms.Compose(train_transforms)
test_tf = transforms.Compose([
transforms.ToTensor(),
transforms.Normalize(mean, std),
])
train_ds = datasets.CIFAR100('./data', train=True, download=True, transform=train_tf)
test_ds = datasets.CIFAR100('./data', train=False, download=True, transform=test_tf)
train_loader = DataLoader(
train_ds, batch_size=batch_size, shuffle=True,
num_workers=8, pin_memory=True, persistent_workers=True
)
test_loader = DataLoader(
test_ds, batch_size=256, num_workers=2, pin_memory=True, persistent_workers=True,
)
model = MobiusNet(
in_chans=3,
num_classes=100,
**config
).to(device)
print(model.get_info())
print()
print(model.get_topology_info())
print()
model.compile(mode='reduce-overhead')
total_params = sum(p.numel() for p in model.parameters())
print(f"Total params: {total_params:,}")
print()
optimizer = torch.optim.AdamW(model.parameters(), lr=lr, weight_decay=0.05)
scheduler = torch.optim.lr_scheduler.CosineAnnealingLR(optimizer, T_max=epochs)
best_acc = 0.0
for epoch in range(1, epochs + 1):
model.train()
train_loss, train_correct, train_total = 0, 0, 0
pbar = tqdm(train_loader, desc=f"Epoch {epoch:3d}")
for x, y in pbar:
x, y = x.to(device), y.to(device)
optimizer.zero_grad()
logits = model(x)
loss = F.cross_entropy(logits, y)
loss.backward()
torch.nn.utils.clip_grad_norm_(model.parameters(), 1.0)
optimizer.step()
train_loss += loss.item() * x.size(0)
train_correct += (logits.argmax(1) == y).sum().item()
train_total += x.size(0)
pbar.set_postfix(loss=f"{loss.item():.4f}")
scheduler.step()
model.eval()
val_correct, val_total = 0, 0
with torch.no_grad():
for x, y in test_loader:
x, y = x.to(device), y.to(device)
logits = model(x)
val_correct += (logits.argmax(1) == y).sum().item()
val_total += x.size(0)
train_acc = train_correct / train_total
val_acc = val_correct / val_total
best_acc = max(best_acc, val_acc)
marker = " ★" if val_acc >= best_acc else ""
print(f"Epoch {epoch:3d} | Loss: {train_loss/train_total:.4f} | "
f"Train: {train_acc:.4f} | Val: {val_acc:.4f} | Best: {best_acc:.4f}{marker}")
print()
print("=" * 70)
print("FINAL RESULTS")
print("=" * 70)
print(model.get_info())
print(f"Best accuracy: {best_acc:.4f}")
print(f"Total params: {total_params:,}")
print("=" * 70)
return model, best_acc
# ============================================================================
# RUN
# ============================================================================
if __name__ == '__main__':
model, best_acc = train_mobius_cifar100(
preset='mobius_stretched', # channels=(64, 64, 128, 128), depths=(8, 4, 2)
epochs=100,
lr=1e-3,
use_autoaugment=True,
) |