Add key to indicate checkpoint is v_prediction when saving.

This commit is contained in:
comfyanonymous 2023-07-18 00:25:53 -04:00
parent 22abe3af9f
commit cea5c2adfb

View File

@ -99,6 +99,10 @@ class BaseModel(torch.nn.Module):
if self.get_dtype() == torch.float16:
clip_state_dict = utils.convert_sd_to(clip_state_dict, torch.float16)
vae_state_dict = utils.convert_sd_to(vae_state_dict, torch.float16)
if self.model_type == ModelType.V_PREDICTION:
unet_state_dict["v_pred"] = torch.tensor([])
return {**unet_state_dict, **vae_state_dict, **clip_state_dict}