Move VAE checkpoints into vae/
Browse files
README.md
CHANGED
|
@@ -49,7 +49,7 @@ DDCONFIG = dict(double_z=True, z_channels=16, resolution=256, in_channels=3, out
|
|
| 49 |
encoder = Encoder(**DDCONFIG)
|
| 50 |
decoder = Decoder(**{**DDCONFIG, "attn_resolutions": []}) # no attention in the decoder
|
| 51 |
|
| 52 |
-
sd = torch.load("kl16_mm3ch_gan_balanced_130k.ckpt", map_location="cpu")["model"]
|
| 53 |
# keys: encoder.* / decoder.* / quant_conv.* / post_quant_conv.*
|
| 54 |
```
|
| 55 |
|
|
|
|
| 49 |
encoder = Encoder(**DDCONFIG)
|
| 50 |
decoder = Decoder(**{**DDCONFIG, "attn_resolutions": []}) # no attention in the decoder
|
| 51 |
|
| 52 |
+
sd = torch.load("vae/kl16_mm3ch_gan_balanced_130k.ckpt", map_location="cpu")["model"]
|
| 53 |
# keys: encoder.* / decoder.* / quant_conv.* / post_quant_conv.*
|
| 54 |
```
|
| 55 |
|
kl16_mm3ch_gan_balanced_130k.ckpt → vae/kl16_mm3ch_gan_balanced_130k.ckpt
RENAMED
|
File without changes
|
vae_brats_synthrad_0050000.ckpt → vae/vae_brats_synthrad_0050000.ckpt
RENAMED
|
File without changes
|