mirror of
https://github.com/ostris/ai-toolkit.git
synced 2026-04-29 18:51:37 +00:00
Removed all submodules. Submodule free now, yay.
This commit is contained in:
20
toolkit/util/vae.py
Normal file
20
toolkit/util/vae.py
Normal file
@@ -0,0 +1,20 @@
|
||||
from diffusers import AutoencoderKL
|
||||
|
||||
|
||||
def load_vae(vae_path, dtype):
|
||||
try:
|
||||
vae = AutoencoderKL.from_pretrained(
|
||||
vae_path,
|
||||
torch_dtype=dtype,
|
||||
)
|
||||
except Exception as e:
|
||||
try:
|
||||
vae = AutoencoderKL.from_pretrained(
|
||||
vae_path.vae_path,
|
||||
subfolder="vae",
|
||||
torch_dtype=dtype,
|
||||
)
|
||||
except Exception as e:
|
||||
raise ValueError(f"Failed to load VAE from {vae_path}: {e}")
|
||||
vae.to(dtype)
|
||||
return vae
|
||||
Reference in New Issue
Block a user