Views
No views yet




| Component | Params |
|---|---|
| SD1.5 UNet (frozen) | 859,520,964 |
| Geo prior (trained) | 4,845,725 |
| Parameter | Value |
|---|---|
| k (simplex dim) | 4 |
| Embedding dim | 32 |
| Feature dim | 768 |
| Stacked layers | 4 |
| Attention heads | 8 |
| Base deformation | 0.25 |
| Residual blend | learnable |
| Timestep conditioned | True |
1from sd15_trainer_geo.pipeline import load_pipeline, load_geo_from_hub
2
3# Load base SD1.5 + fresh geo prior
4pipe = load_pipeline()
5
6# Load trained geo weights from this repo
7load_geo_from_hub(pipe, "AbstractPhil/sd15-geoflow-object-association")
8
9# Or one-shot: load base + geo in one call
10pipe = load_pipeline(geo_repo_id="AbstractPhil/sd15-geoflow-object-association")