You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Paths to files that have a "\" character need to have it replaced with "\\"
for example, the generated code
vaeloader_7 = vaeloader.load_vae(vae_name="SDXL\sdxl_vae.safetensors")
needs to be replaced with
vaeloader_7 = vaeloader.load_vae(vae_name="SDXL\\sdxl_vae.safetensors")
Cheers.
The text was updated successfully, but these errors were encountered:
Paths to files that have a "" character need to have it replaced with "" for example, the generated code vaeloader_7 = vaeloader.load_vae(vae_name="SDXL\sdxl_vae.safetensors") needs to be replaced with vaeloader_7 = vaeloader.load_vae(vae_name="SDXL\sdxl_vae.safetensors")
Haha, got caught out by the very thing I'm trying to describe. However, there is a clue in the title :-)
Poetic justice for not checking it before posting.
I'll change it.
Hi, Came across another issue with Windows 10 -
Paths to files that have a "\" character need to have it replaced with "\\"
for example, the generated code
vaeloader_7 = vaeloader.load_vae(vae_name="SDXL\sdxl_vae.safetensors")
needs to be replaced with
vaeloader_7 = vaeloader.load_vae(vae_name="SDXL\\sdxl_vae.safetensors")
Cheers.
The text was updated successfully, but these errors were encountered: