Merge branch 'comfyanonymous:master' into master

This commit is contained in:
patientx 2025-02-26 16:00:33 +03:00 committed by GitHub
commit debf69185c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -916,6 +916,10 @@ class WAN21_T2V(supported_models_base.BASE):
vae_key_prefix = ["vae."]
text_encoder_key_prefix = ["text_encoders."]
def __init__(self, unet_config):
super().__init__(unet_config)
self.memory_usage_factor = self.unet_config.get("dim", 2000) / 2000
def get_model(self, state_dict, prefix="", device=None):
out = model_base.WAN21(self, device=device)
return out