File size: 34,063 Bytes
609e926 2ac3bd1 609e926 2ac3bd1 609e926 9a47041 609e926 9a47041 609e926 9a47041 609e926 9a47041 609e926 9a47041 609e926 9a47041 609e926 9a47041 609e926 9a47041 609e926 9a47041 609e926 9a47041 609e926 9a47041 609e926 9a47041 609e926 9a47041 609e926 9a47041 609e926 9a47041 609e926 9a47041 609e926 9a47041 609e926 9a47041 |
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 |
# =====================================================================================
# SD1.5 Flow-Matching Trainer β David-Driven Block Penalties (HF-loaded)
# Author: AbstractPhil
# Assistant: Claude Sonnet 4.5 + GPT 4o
# - BaseConfig at top
# - Functionality (teacher/student/david/assessor/fusion/trainer)
# - Activations at bottom
# =====================================================================================
# try:
# !pip uninstall -qy geometricvocab
# except:
# pass
#
# !pip install -q git+https://github.com/AbstractEyes/lattice_vocabulary.git
#
# =====================================================================================
from __future__ import annotations
import os, json, math, random, re
from dataclasses import dataclass, asdict
from pathlib import Path
from typing import Dict, List, Tuple, Optional
import urllib.request
import subprocess
import shutil
import torch
import torch.nn as nn
import torch.nn.functional as F
from torch.utils.data import Dataset, DataLoader
from torch.utils.tensorboard import SummaryWriter
from tqdm import tqdm
# Diffusers
from diffusers import StableDiffusionPipeline, DDPMScheduler
from diffusers.models.unets.unet_2d_condition import UNet2DConditionModel
# Repo deps (present in your repo)
from geovocab2.train.model.core.geo_david_collective import GeoDavidCollective
from geovocab2.data.prompt.symbolic_tree import SynthesisSystem
# HF / safetensors
from huggingface_hub import snapshot_download, HfApi, create_repo, hf_hub_download
from safetensors.torch import load_file
# =====================================================================================
# 1) CONFIG (BaseConfig)
# =====================================================================================
@dataclass
class BaseConfig:
run_name: str = "sd15_flowmatch_david_hf"
out_dir: str = "./runs/sd15_flowmatch_david_hf"
ckpt_dir: str = "./checkpoints_sd15_flow_david_hf"
save_every: int = 1
# Data
num_samples: int = 200_000
batch_size: int = 32
num_workers: int = 2
seed: int = 42
# Models / Blocks
model_id: str = "runwayml/stable-diffusion-v1-5"
active_blocks: Tuple[str, ...] = ("down_0","down_1","down_2","down_3","mid","up_0","up_1","up_2","up_3")
pooling: str = "mean" # mean | max | adaptive
# Flow training
epochs: int = 10
lr: float = 1e-4
weight_decay: float = 1e-3
grad_clip: float = 1.0
amp: bool = True
global_flow_weight: float = 1.0
block_penalty_weight: float = 0.2 # β NEW: Start very low!
use_local_flow_heads: bool = False
local_flow_weight: float = 1.0
# KD (optional)
use_kd: bool = True
kd_weight: float = 0.25
# David (ALWAYS used, HF)
david_repo_id: str = "AbstractPhil/geo-david-collective-sd15-base-e40"
david_cache_dir: str = "./_hf_david_cache"
david_state_key: Optional[str] = None # Noneβraw state; or "model_state_dict" if ckpt-style
# Fusion: Ξ»_b = w_b * (1 + Ξ±Β·e_t + Ξ²Β·e_p + δ·(1βcoh))
alpha_timestep: float = 0.5
beta_pattern: float = 0.25
delta_incoherence: float = 0.25
lambda_min: float = 0.5
lambda_max: float = 3.0
# Block weights (overridden by HF config if present)
block_weights: Dict[str, float] = None
# Scheduler
num_train_timesteps: int = 1000
# Inference
sample_steps: int = 30
guidance_scale: float = 7.5
# HuggingFace upload & resume
hf_repo_id: Optional[str] = "AbstractPhil/sd15-flow-matching"
upload_every_epoch: bool = True
continue_training: bool = True # Download latest checkpoint and resume
def __post_init__(self):
Path(self.out_dir).mkdir(parents=True, exist_ok=True)
Path(self.ckpt_dir).mkdir(parents=True, exist_ok=True)
Path(self.david_cache_dir).mkdir(parents=True, exist_ok=True)
if self.block_weights is None:
self.block_weights = {'down_0':0.7,'down_1':0.9,'down_2':1.0,'down_3':1.1,'mid':1.2,'up_0':1.1,'up_1':1.0,'up_2':0.9,'up_3':0.7}
# =====================================================================================
# 2) DATA
# =====================================================================================
class SymbolicPromptDataset(Dataset):
def __init__(self, n:int, seed:int=42):
self.n = n
random.seed(seed)
self.sys = SynthesisSystem(seed=seed)
def __len__(self): return self.n
def __getitem__(self, idx):
r = self.sys.synthesize(complexity=random.choice([1,2,3,4,5]))
prompt = r['text']
t = random.randint(0, 999)
return {"prompt": prompt, "t": t}
def collate(batch: List[dict]):
prompts = [b["prompt"] for b in batch]
t = torch.tensor([b["t"] for b in batch], dtype=torch.long)
t_bins = t // 10
return {"prompts": prompts, "t": t, "t_bins": t_bins}
# =====================================================================================
# 3) HOOKS + POOLING
# =====================================================================================
class HookBank:
def __init__(self, unet: UNet2DConditionModel, active: Tuple[str, ...]):
self.active = set(active)
self.bank: Dict[str, torch.Tensor] = {}
self.hooks: List[torch.utils.hooks.RemovableHandle] = []
self._register(unet)
def _register(self, unet: UNet2DConditionModel):
def mk(name):
def h(m, i, o):
out = o[0] if isinstance(o,(tuple,list)) else o
self.bank[name] = out
return h
for i, blk in enumerate(unet.down_blocks):
nm = f"down_{i}"
if nm in self.active: self.hooks.append(blk.register_forward_hook(mk(nm)))
if "mid" in self.active:
self.hooks.append(unet.mid_block.register_forward_hook(mk("mid")))
for i, blk in enumerate(unet.up_blocks):
nm = f"up_{i}"
if nm in self.active: self.hooks.append(blk.register_forward_hook(mk(nm)))
def clear(self): self.bank.clear()
def close(self):
for h in self.hooks: h.remove()
self.hooks.clear()
def spatial_pool(x: torch.Tensor, name: str, policy: str) -> torch.Tensor:
if policy == "mean": return x.mean(dim=(2,3))
if policy == "max": return x.amax(dim=(2,3))
if policy == "adaptive":
return x.mean(dim=(2,3)) if (name.startswith("down") or name=="mid") else x.amax(dim=(2,3))
raise ValueError(f"Unknown pooling: {policy}")
# =====================================================================================
# 4) TEACHER (SD1.5)
# =====================================================================================
class SD15Teacher(nn.Module):
def __init__(self, cfg: BaseConfig, device: str):
super().__init__()
self.pipe = StableDiffusionPipeline.from_pretrained(cfg.model_id, torch_dtype=torch.float16, safety_checker=None).to(device)
self.unet: UNet2DConditionModel = self.pipe.unet
self.text_encoder = self.pipe.text_encoder
self.tokenizer = self.pipe.tokenizer
self.hooks = HookBank(self.unet, cfg.active_blocks)
self.sched = DDPMScheduler(num_train_timesteps=cfg.num_train_timesteps)
self.device = device
for p in self.parameters(): p.requires_grad_(False)
@torch.no_grad()
def encode(self, prompts: List[str]) -> torch.Tensor:
tok = self.tokenizer(prompts, padding="max_length", max_length=self.tokenizer.model_max_length,
truncation=True, return_tensors="pt")
return self.text_encoder(tok.input_ids.to(self.device))[0]
@torch.no_grad()
def forward_eps_and_feats(self, x_t: torch.Tensor, t: torch.LongTensor, ehs: torch.Tensor):
self.hooks.clear()
eps_hat = self.unet(x_t, t, encoder_hidden_states=ehs).sample
feats = {k: v.detach().float() for k, v in self.hooks.bank.items()}
return eps_hat.float(), feats
def alpha_sigma(self, t: torch.LongTensor) -> Tuple[torch.Tensor, torch.Tensor]:
ac = self.sched.alphas_cumprod.to(self.device)[t]
alpha = ac.sqrt().view(-1,1,1,1).float()
sigma = (1.0 - ac).sqrt().view(-1,1,1,1).float()
return alpha, sigma
# =====================================================================================
# 5) STUDENT (v-pred) + LOCAL FLOW HEADS
# =====================================================================================
class StudentUNet(nn.Module):
def __init__(self, teacher_unet: UNet2DConditionModel, active_blocks: Tuple[str,...], use_local_heads: bool):
super().__init__()
self.unet = UNet2DConditionModel.from_config(teacher_unet.config)
self.unet.load_state_dict(teacher_unet.state_dict(), strict=True)
self.hooks = HookBank(self.unet, active_blocks)
self.use_local_heads = use_local_heads
self.local_heads = nn.ModuleDict()
def _ensure_heads(self, feats: Dict[str, torch.Tensor]):
if not self.use_local_heads: return
if len(self.local_heads) == len(feats): return
# Get dtype from main UNet
target_dtype = next(self.unet.parameters()).dtype
for name, f in feats.items():
c = f.shape[1]
if name not in self.local_heads:
head = nn.Conv2d(c, 4, kernel_size=1)
# Convert head to match UNet dtype
head = head.to(dtype=target_dtype, device=f.device)
self.local_heads[name] = head
def forward(self, x_t: torch.Tensor, t: torch.LongTensor, ehs: torch.Tensor):
self.hooks.clear()
v_hat = self.unet(x_t, t, encoder_hidden_states=ehs).sample
feats = {k: v for k, v in self.hooks.bank.items()} # Keep original dtype
self._ensure_heads(feats)
return v_hat, feats
# =====================================================================================
# 6) DAVID LOADER (HF) + ASSESSOR + FUSION
# =====================================================================================
class DavidLoader:
"""
Downloads HF repo (config + safetensors), instantiates GeoDavidCollective with HF config,
loads weights, returns a frozen model + the parsed HF config.
"""
def __init__(self, cfg: BaseConfig, device: str):
self.cfg = cfg
self.device = device
self.repo_dir = snapshot_download(repo_id=cfg.david_repo_id, local_dir=cfg.david_cache_dir, local_dir_use_symlinks=False)
self.config_path = os.path.join(self.repo_dir, "config.json")
self.weights_path = os.path.join(self.repo_dir, "model.safetensors")
with open(self.config_path, "r") as f:
self.hf_config = json.load(f)
# Instantiate GeoDavidCollective from HF config
self.gdc = GeoDavidCollective(
block_configs=self.hf_config["block_configs"],
num_timestep_bins=int(self.hf_config["num_timestep_bins"]),
num_patterns_per_bin=int(self.hf_config["num_patterns_per_bin"]),
block_weights=self.hf_config.get("block_weights", {k:1.0 for k in self.hf_config["block_configs"].keys()}),
loss_config=self.hf_config.get("loss_config", {})
).to(device).eval()
# Load weights
state = load_file(self.weights_path)
self.gdc.load_state_dict(state, strict=False)
for p in self.gdc.parameters(): p.requires_grad_(False)
# Report
print(f"β David loaded from HF: {self.repo_dir}")
print(f" blocks={len(self.hf_config['block_configs'])} bins={self.hf_config['num_timestep_bins']} patterns={self.hf_config['num_patterns_per_bin']}")
# Override block weights in main cfg if provided
if "block_weights" in self.hf_config:
cfg.block_weights = self.hf_config["block_weights"]
class DavidAssessor(nn.Module):
"""
Uses David to score STUDENT pooled features (per block) and timesteps.
Produces:
e_t[name] : timestep CE error proxy (scalar)
e_p[name] : pattern CE error proxy if logits present, else 0
coh[name] : coherence proxy (avg Cantor alpha if provided, else 1)
"""
def __init__(self, gdc: GeoDavidCollective, pooling: str):
super().__init__()
self.gdc = gdc
self.pooling = pooling
def _pool(self, feats: Dict[str, torch.Tensor]) -> Dict[str, torch.Tensor]:
return {k: spatial_pool(v, k, self.pooling) for k, v in feats.items()}
@torch.no_grad()
def forward(self, feats_student: Dict[str, torch.Tensor], t: torch.LongTensor
) -> Tuple[Dict[str,float], Dict[str,float], Dict[str,float]]:
Zs = self._pool(feats_student) # [B,C] per block
outs = self.gdc(Zs, t.float()) # forward for predictions/logits
e_t, e_p, coh = {}, {}, {}
# timestep logits
ts_key = None
for key in ["timestep_logits", "logits_timestep", "timestep_head_logits"]:
if key in outs: ts_key = key; break
# pattern logits (optional)
pt_key = None
for key in ["pattern_logits", "logits_pattern", "pattern_head_logits"]:
if key in outs: pt_key = key; break
t_bins = (t // 10).to(next(self.gdc.parameters()).device)
if ts_key is not None:
# Expect dict per block or a tensor across blocks; support both
ts_logits = outs[ts_key]
if isinstance(ts_logits, dict):
for name, L in ts_logits.items():
ce = F.cross_entropy(L, t_bins, reduction="mean")
e_t[name] = float(ce.item())
else:
# single head: broadcast same CE to all blocks
ce = F.cross_entropy(ts_logits, t_bins, reduction="mean")
for name in Zs.keys():
e_t[name] = float(ce.item())
else:
for name in Zs.keys(): e_t[name] = 0.0
if pt_key is not None:
pt_logits = outs[pt_key]
# If no labels for pattern, use entropy as "error" proxy
if isinstance(pt_logits, dict):
for name, L in pt_logits.items():
P = L.softmax(-1)
ent = -(P * (P.clamp_min(1e-9)).log()).sum(-1).mean()
e_p[name] = float(ent.item() / math.log(P.shape[-1]))
else:
P = pt_logits.softmax(-1)
ent = -(P * (P.clamp_min(1e-9)).log()).sum(-1).mean()
for name in Zs.keys():
e_p[name] = float(ent.item() / math.log(P.shape[-1]))
else:
for name in Zs.keys(): e_p[name] = 0.0
# Cantor alphas / coherence
alphas = {}
try:
alphas = self.gdc.get_cantor_alphas() # dict of scalars
except Exception:
alphas = {}
avg_alpha = float(sum(alphas.values())/max(len(alphas),1)) if alphas else 1.0
for name in Zs.keys():
coh[name] = avg_alpha # higher=more coherent
return e_t, e_p, coh
class BlockPenaltyFusion:
def __init__(self, cfg: BaseConfig): self.cfg = cfg
def lambdas(self, e_t:Dict[str,float], e_p:Dict[str,float], coh:Dict[str,float]) -> Dict[str,float]:
lam = {}
for name, base in self.cfg.block_weights.items():
val = base * (1.0
+ self.cfg.alpha_timestep * float(e_t.get(name,0.0))
+ self.cfg.beta_pattern * float(e_p.get(name,0.0))
+ self.cfg.delta_incoherence * (1.0 - float(coh.get(name,1.0))))
lam[name] = float(max(self.cfg.lambda_min, min(self.cfg.lambda_max, val)))
return lam
# =====================================================================================
# 7) TRAINER + INFERENCE
# =====================================================================================
class FlowMatchDavidTrainer:
def __init__(self, cfg: BaseConfig, device: str = "cuda"):
self.cfg = cfg
self.device = device
self.start_epoch = 0
self.start_gstep = 0
# Data
self.dataset = SymbolicPromptDataset(cfg.num_samples, cfg.seed)
self.loader = DataLoader(self.dataset, batch_size=cfg.batch_size, shuffle=True,
num_workers=cfg.num_workers, pin_memory=True, collate_fn=collate)
# Teacher & Student
self.teacher = SD15Teacher(cfg, device).eval()
self.student = StudentUNet(self.teacher.unet, cfg.active_blocks, cfg.use_local_flow_heads).to(device)
# David
self.david_loader = DavidLoader(cfg, device)
self.david = self.david_loader.gdc
# Assessor + Fusion
self.assessor = DavidAssessor(self.david, cfg.pooling)
self.fusion = BlockPenaltyFusion(cfg)
# Opt/Sched/AMP
self.opt = torch.optim.AdamW(self.student.parameters(), lr=cfg.lr, weight_decay=cfg.weight_decay)
self.sched = torch.optim.lr_scheduler.CosineAnnealingLR(self.opt, T_max=cfg.epochs * len(self.loader))
self.scaler = torch.cuda.amp.GradScaler(enabled=cfg.amp)
# Try to resume from HF if enabled
if cfg.continue_training:
self._load_latest_from_hf()
# Logs
self.writer = SummaryWriter(log_dir=os.path.join(cfg.out_dir, cfg.run_name))
def _load_latest_from_hf(self):
"""Download and load the latest checkpoint from HuggingFace."""
if not self.cfg.hf_repo_id:
print("β οΈ continue_training=True but no hf_repo_id specified")
return
try:
api = HfApi()
print(f"\nπ Searching for latest checkpoint in {self.cfg.hf_repo_id}...")
# Check if repo exists
try:
repo_info = api.repo_info(repo_id=self.cfg.hf_repo_id, repo_type="model")
except Exception as e:
print(f"β οΈ Could not access repo: {e}")
print(" Starting training from scratch")
return
# List all files in repo
files = api.list_repo_files(repo_id=self.cfg.hf_repo_id, repo_type="model")
if not files:
print("βΉοΈ Repo is empty, starting from scratch")
return
print(f"π Found {len(files)} files in repo:")
for f in files:
print(f" - {f}")
# Find all .safetensors files with epoch numbers
# Try multiple patterns
epochs = []
for f in files:
if not f.endswith('.safetensors'):
continue
# Look for _e<number> pattern anywhere in filename
match = re.search(r'_e(\d+)\.safetensors$', f)
if match:
epoch_num = int(match.group(1))
epochs.append((epoch_num, f))
print(f"β Found checkpoint: {f} (epoch {epoch_num})")
if not epochs:
print("βΉοΈ No checkpoint files found (looking for *_e<num>.safetensors)")
return
# Get latest epoch
latest_epoch, latest_file = max(epochs, key=lambda x: x[0])
print(f"\nπ₯ Downloading latest checkpoint: {latest_file} (epoch {latest_epoch})")
# Download the safetensors file
local_path = hf_hub_download(
repo_id=self.cfg.hf_repo_id,
filename=latest_file,
repo_type="model",
cache_dir=self.cfg.ckpt_dir
)
print(f"β Downloaded to: {local_path}")
# Load the checkpoint using from_single_file
print("π¦ Loading checkpoint into pipeline...")
pipe = StableDiffusionPipeline.from_single_file(
local_path,
torch_dtype=torch.float16,
safety_checker=None,
load_safety_checker=False
)
# Extract UNet state dict
unet_state = pipe.unet.state_dict()
# Load into student
missing, unexpected = self.student.unet.load_state_dict(unet_state, strict=False)
print(f"β Loaded student UNet from epoch {latest_epoch}")
if missing:
print(f" Missing keys: {len(missing)}")
if unexpected:
print(f" Unexpected keys: {len(unexpected)}")
# Set starting epoch (resume from next epoch)
self.start_epoch = latest_epoch
self.start_gstep = latest_epoch * len(self.loader)
print(f"π― Resuming training from epoch {self.start_epoch + 1}")
# Clean up
del pipe
torch.cuda.empty_cache()
except Exception as e:
print(f"β οΈ Failed to load checkpoint from HF: {e}")
print(" Starting training from scratch")
import traceback
traceback.print_exc()
# math helpers
def _v_star(self, x_t, t, eps_hat):
alpha, sigma = self.teacher.alpha_sigma(t)
x0_hat = (x_t - sigma * eps_hat) / (alpha + 1e-8)
return alpha * eps_hat - sigma * x0_hat
def _down_like(self, tgt: torch.Tensor, ref: torch.Tensor) -> torch.Tensor:
return F.interpolate(tgt, size=ref.shape[-2:], mode="bilinear", align_corners=False)
def _kd_cos(self, s: torch.Tensor, t: torch.Tensor) -> torch.Tensor:
s = F.normalize(s, dim=-1); t = F.normalize(t, dim=-1)
return 1.0 - (s*t).sum(-1).mean()
# training
def train(self):
cfg = self.cfg
gstep = self.start_gstep
for ep in range(self.start_epoch, cfg.epochs):
self.student.train()
pbar = tqdm(self.loader, desc=f"Epoch {ep+1}/{cfg.epochs}",
dynamic_ncols=True, leave=True, position=0) # Add these params
acc = {"L":0.0, "Lf":0.0, "Lb":0.0}
for it, batch in enumerate(pbar):
prompts = batch["prompts"]
t = batch["t"].to(self.device)
with torch.no_grad():
ehs = self.teacher.encode(prompts)
# Latents
x_t = torch.randn(len(prompts), 4, 64, 64, device=self.device, dtype=torch.float16)
# Teacher targets
with torch.no_grad():
eps_hat, t_feats_spatial = self.teacher.forward_eps_and_feats(x_t.half(), t, ehs)
v_star = self._v_star(x_t, t, eps_hat)
with torch.cuda.amp.autocast(enabled=cfg.amp):
# Student
v_hat, s_feats_spatial = self.student(x_t, t, ehs)
L_flow = F.mse_loss(v_hat, v_star)
# David assessor on STUDENT pooled features
e_t, e_p, coh = self.assessor(s_feats_spatial, t)
lam = self.fusion.lambdas(e_t, e_p, coh)
# Per-block KD + Local flow
L_blocks = torch.zeros((), device=self.device)
for name, s_feat in s_feats_spatial.items():
# KD (pooled)
L_kd = torch.zeros((), device=self.device)
if cfg.use_kd:
s_pool = spatial_pool(s_feat, name, cfg.pooling)
t_pool = spatial_pool(t_feats_spatial[name], name, cfg.pooling)
L_kd = self._kd_cos(s_pool, t_pool)
# Local flow
L_lf = torch.zeros((), device=self.device)
if cfg.use_local_flow_heads and name in self.student.local_heads:
v_loc = self.student.local_heads[name](s_feat)
v_ds = self._down_like(v_star, v_loc)
L_lf = F.mse_loss(v_loc, v_ds)
L_blocks = L_blocks + lam.get(name,1.0) * (cfg.kd_weight * L_kd + cfg.local_flow_weight * L_lf)
L_total = cfg.global_flow_weight*L_flow + cfg.block_penalty_weight*L_blocks
self.opt.zero_grad(set_to_none=True)
if cfg.amp:
self.scaler.scale(L_total).backward()
nn.utils.clip_grad_norm_(self.student.parameters(), cfg.grad_clip)
self.scaler.step(self.opt); self.scaler.update()
else:
L_total.backward()
nn.utils.clip_grad_norm_(self.student.parameters(), cfg.grad_clip)
self.opt.step()
self.sched.step(); gstep += 1
acc["L"] += float(L_total.item())
acc["Lf"] += float(L_flow.item())
acc["Lb"] += float(L_blocks.item())
# Only log to tensorboard every 50 iterations
if it % 50 == 0:
self.writer.add_scalar("train/total", float(L_total.item()), gstep)
self.writer.add_scalar("train/flow", float(L_flow.item()), gstep)
self.writer.add_scalar("train/blocks",float(L_blocks.item()), gstep)
# log a few lambdas
for k in list(lam.keys())[:4]:
self.writer.add_scalar(f"lambda/{k}", lam[k], gstep)
# Update progress bar less frequently to avoid double display
if it % 10 == 0 or it == len(self.loader) - 1: # Update every 10 iterations
pbar.set_postfix({
"L": f"{float(L_total.item()):.4f}",
"Lf": f"{float(L_flow.item()):.4f}",
"Lb": f"{float(L_blocks.item()):.4f}"
}, refresh=False) # Add refresh=False
del x_t, eps_hat, v_star, v_hat, s_feats_spatial, t_feats_spatial
pbar.close() # Explicitly close the progress bar
n = len(self.loader)
print(f"\n[Epoch {ep+1}] L={acc['L']/n:.4f} | L_flow={acc['Lf']/n:.4f} | L_blocks={acc['Lb']/n:.4f}")
self.writer.add_scalar("epoch/total", acc['L']/n, ep+1)
self.writer.add_scalar("epoch/flow", acc['Lf']/n, ep+1)
self.writer.add_scalar("epoch/blocks",acc['Lb']/n, ep+1)
if (ep+1) % cfg.save_every == 0:
self._save(ep+1, gstep)
self._save("final", gstep)
self.writer.close()
def _save(self, tag, gstep):
"""Save and convert to ComfyUI format, then upload."""
# 1. Save .pt first (for resuming training if needed)
pt_path = Path(self.cfg.ckpt_dir) / f"{self.cfg.run_name}_e{tag}.pt"
torch.save({
"cfg": asdict(self.cfg),
"student": self.student.state_dict(),
"opt": self.opt.state_dict(),
"sched": self.sched.state_dict(),
"gstep": gstep
}, pt_path)
print(f"β Saved temp .pt: {pt_path}")
# 2. Convert to ComfyUI safetensors
safetensors_path = self._convert_to_comfyui(pt_path, tag)
# 3. Upload to HF
if self.cfg.upload_every_epoch and self.cfg.hf_repo_id and safetensors_path:
self._upload_to_hf(safetensors_path, tag)
# 4. Clean up large .pt file
pt_path.unlink()
print(f"β Cleaned up temp .pt file")
def _convert_to_comfyui(self, pt_path: Path, tag) -> Optional[Path]:
"""Convert .pt to ComfyUI-compatible safetensors."""
try:
temp_pipeline = Path(self.cfg.ckpt_dir) / f"temp_pipeline_e{tag}"
output_safetensors = Path(self.cfg.ckpt_dir) / f"{self.cfg.run_name}_e{tag}.safetensors"
# Download converter if needed
converter_path = Path(self.cfg.ckpt_dir) / "convert_diffusers_to_original_stable_diffusion.py"
if not converter_path.exists():
print("π₯ Downloading official converter...")
url = "https://raw.githubusercontent.com/huggingface/diffusers/main/scripts/convert_diffusers_to_original_stable_diffusion.py"
urllib.request.urlretrieve(url, str(converter_path))
print("β Converter downloaded")
# Load checkpoint
print(f"π¦ Creating diffusers pipeline from checkpoint...")
checkpoint = torch.load(pt_path, map_location='cpu')
student_state = checkpoint.get('student', checkpoint)
# Load base UNet and replace with student weights
print("π₯ Loading base UNet...")
unet = UNet2DConditionModel.from_pretrained(
"runwayml/stable-diffusion-v1-5",
subfolder="unet",
torch_dtype=torch.float16
)
unet.load_state_dict(student_state, strict=False)
print("β Loaded student weights into UNet")
# Load full pipeline and replace UNet
print("π₯ Loading base SD1.5 pipeline...")
pipe = StableDiffusionPipeline.from_pretrained(
"runwayml/stable-diffusion-v1-5",
torch_dtype=torch.float16,
safety_checker=None
)
pipe.unet = unet
print("β Replaced UNet with student")
# Save as pipeline
print(f"πΎ Saving diffusers pipeline...")
pipe.save_pretrained(str(temp_pipeline), safe_serialization=True)
print(f"β Pipeline saved to {temp_pipeline}")
# Convert to checkpoint
print(f"π Converting to ComfyUI format...")
cmd = [
"python", str(converter_path),
"--model_path", str(temp_pipeline),
"--checkpoint_path", str(output_safetensors),
"--half"
]
result = subprocess.run(cmd, capture_output=True, text=True)
if result.returncode != 0:
print(f"β Conversion failed: {result.stderr}")
return None
# Verify output
if output_safetensors.exists():
size_mb = output_safetensors.stat().st_size / 1e6
print(f"β Converted: {output_safetensors.name} ({size_mb:.1f}MB)")
# Clean up temp pipeline
shutil.rmtree(temp_pipeline)
print("β Cleaned up temp pipeline")
return output_safetensors
else:
print(f"β Output file not created")
return None
except Exception as e:
print(f"β Conversion failed: {e}")
import traceback
traceback.print_exc()
return None
def _upload_to_hf(self, path: Path, tag):
"""Upload safetensors to HuggingFace."""
try:
api = HfApi()
# Create repo if doesn't exist
try:
create_repo(self.cfg.hf_repo_id, exist_ok=True, private=False, repo_type="model")
print(f"β Repo ready: {self.cfg.hf_repo_id}")
except Exception:
pass
# Upload
print(f"π€ Uploading to {self.cfg.hf_repo_id}...")
api.upload_file(
path_or_fileobj=str(path),
path_in_repo=path.name,
repo_id=self.cfg.hf_repo_id,
repo_type="model",
commit_message=f"Epoch {tag}"
)
print(f"β
Uploaded: https://huggingface.co/{self.cfg.hf_repo_id}/{path.name}")
except Exception as e:
print(f"β οΈ Upload failed: {e}")
# ---------- Inference (v-pred sampling; use teacher VAE for decode) ----------
@torch.no_grad()
def sample(self, prompts: List[str], steps: Optional[int]=None, guidance: Optional[float]=None) -> torch.Tensor:
steps = steps or self.cfg.sample_steps
guidance = guidance if guidance is not None else self.cfg.guidance_scale
cond_e = self.teacher.encode(prompts)
uncond_e = self.teacher.encode([""]*len(prompts))
sched = self.teacher.sched
sched.set_timesteps(steps, device=self.device)
x_t = torch.randn(len(prompts), 4, 64, 64, device=self.device)
for t_scalar in sched.timesteps:
t = torch.full((x_t.shape[0],), t_scalar, device=self.device, dtype=torch.long)
v_u, _ = self.student(x_t, t, uncond_e)
v_c, _ = self.student(x_t, t, cond_e)
v_hat = v_u + guidance*(v_c - v_u)
alpha, sigma = self.teacher.alpha_sigma(t)
denom = (alpha**2 + sigma**2)
x0_hat = (alpha * x_t - sigma * v_hat) / (denom + 1e-8)
eps_hat = (x_t - alpha * x0_hat) / (sigma + 1e-8)
step = sched.step(model_output=eps_hat, timestep=t_scalar, sample=x_t)
x_t = step.prev_sample
imgs = self.teacher.pipe.vae.decode(x_t / 0.18215).sample
return imgs.clamp(-1,1)
# =====================================================================================
# 8) ACTIVATION
# =====================================================================================
def main():
cfg = BaseConfig()
print(json.dumps(asdict(cfg), indent=2))
device = "cuda" if torch.cuda.is_available() else "cpu"
if device != "cuda":
print("β οΈ A100 strongly recommended.")
trainer = FlowMatchDavidTrainer(cfg, device=device)
trainer.train()
# quick sanity
_ = trainer.sample(["a castle at sunset"], steps=10, guidance=7.0)
print("β Inference sanity done.")
if __name__ == "__main__":
main() |