mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix mistake in indexing flat_ema_key
This commit is contained in:
parent
3f9105be50
commit
1de783b1ce
@ -422,7 +422,7 @@ def convert_ldm_unet_checkpoint(
|
|||||||
)
|
)
|
||||||
for key in keys:
|
for key in keys:
|
||||||
if key.startswith("model.diffusion_model"):
|
if key.startswith("model.diffusion_model"):
|
||||||
flat_ema_key = "model_ema." + "".join(key.split(".")[2:])
|
flat_ema_key = "model_ema." + "".join(key.split(".")[1:])
|
||||||
unet_state_dict[key.replace(unet_key, "")] = checkpoint.pop(flat_ema_key)
|
unet_state_dict[key.replace(unet_key, "")] = checkpoint.pop(flat_ema_key)
|
||||||
else:
|
else:
|
||||||
if sum(k.startswith("model_ema") for k in keys) > 100:
|
if sum(k.startswith("model_ema") for k in keys) > 100:
|
||||||
|
Loading…
Reference in New Issue
Block a user