Update cfz_vae_loader.py

This commit is contained in:
patientx 2025-09-05 17:40:40 +03:00 committed by GitHub
parent 79f734309b
commit 5f05fe3e1d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -45,7 +45,7 @@ class CFZVAELoader:
# Load the VAE with patched precision functions
vae_loader = VAELoader()
vae = vae_loader.load_vae(vae_name)[0]
print(f"CFZ VAE: Loaded with forced precision {precision}")
print(f"[CFZ VAE] VAE loaded with precision {precision}")
return (vae,)
finally:
# Restore original functions
@ -59,4 +59,5 @@ NODE_CLASS_MAPPINGS = {
NODE_DISPLAY_NAME_MAPPINGS = {
"CFZVAELoader": "CFZ VAE Loader"
}
}