mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-09-12 04:27:21 +00:00
Fix loading SD1.5 diffusers checkpoint.
This commit is contained in:
4
nodes.py
4
nodes.py
@@ -231,7 +231,7 @@ class DiffusersLoader:
|
||||
RETURN_TYPES = ("MODEL", "CLIP", "VAE")
|
||||
FUNCTION = "load_checkpoint"
|
||||
|
||||
CATEGORY = "loaders"
|
||||
CATEGORY = "advanced/loaders"
|
||||
|
||||
def load_checkpoint(self, model_path, output_vae=True, output_clip=True):
|
||||
for search_path in folder_paths.get_folder_paths("diffusers"):
|
||||
@@ -240,7 +240,7 @@ class DiffusersLoader:
|
||||
if model_path in paths:
|
||||
model_path = os.path.join(search_path, model_path)
|
||||
break
|
||||
search_paths = folder_paths.get_folder_paths("diffusers")
|
||||
|
||||
return load_diffusers(model_path, fp16=model_management.should_use_fp16(), output_vae=output_vae, output_clip=output_clip, embedding_directory=folder_paths.get_folder_paths("embeddings"))
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user