Views
No views yet
mmdx — Nyström-approximated MMD) on a 10-encoder gated-PID judge panel. This is the
σ0.7 arm (RBF bandwidth = 0.7 × median heuristic), continued from the converged
10-encoder gated-PID run (step 3499) to step 4000.model.pth — model weights only (the non-EMA model state_dict).| field | value |
|---|---|
| tensors | 654 (all float32) |
| size | 3.82 GB |
| opt-step | 4000 (current_step; step=3999, 0-indexed) |
| samples seen | 20,480,000 |
| source ckpt | phase42-sigma07-from3499/step_0003999.pth (model slice; EMA + optimizer + queues dropped) |
| resolution | 256×256, class-conditional (1000 ImageNet classes) |
model key — drop-in for the
MMDLoss/FD-Loss training repo's load_from:1# config
2load_from: /path/to/model.pth1import torch
2ckpt = torch.load("model.pth", map_location="cpu", weights_only=False)
3state_dict = ckpt["model"] # 654 tensors
4model.load_state_dict(state_dict, strict=False)
5print(ckpt["current_step"], ckpt["samples_seen"]) # 4000, 20480000