mirror of
https://github.com/lllyasviel/Fooocus.git
synced 2026-08-16 13:13:16 +02:00
i
This commit is contained in:
@@ -1,19 +1,12 @@
|
||||
import os
|
||||
import random
|
||||
import torch
|
||||
|
||||
from comfy.sd import load_checkpoint_guess_config
|
||||
from comfy.model_management import unload_model
|
||||
|
||||
from nodes import (
|
||||
VAEDecode,
|
||||
KSamplerAdvanced,
|
||||
EmptyLatentImage,
|
||||
SaveImage,
|
||||
CLIPTextEncode,
|
||||
)
|
||||
|
||||
from nodes import VAEDecode, KSamplerAdvanced, EmptyLatentImage, SaveImage, CLIPTextEncode
|
||||
from modules.path import modelfile_path
|
||||
|
||||
|
||||
xl_base_filename = os.path.join(modelfile_path, 'sd_xl_base_1.0.safetensors')
|
||||
xl_refiner_filename = os.path.join(modelfile_path, 'sd_xl_refiner_1.0.safetensors')
|
||||
|
||||
@@ -25,6 +18,7 @@ opEmptyLatentImage = EmptyLatentImage()
|
||||
opKSamplerAdvanced = KSamplerAdvanced()
|
||||
opVAEDecode = VAEDecode()
|
||||
|
||||
with torch.no_grad():
|
||||
positive_conditions = opCLIPTextEncode.encode(clip=xl_base_clip, text='a handsome man in forest')[0]
|
||||
negative_conditions = opCLIPTextEncode.encode(clip=xl_base_clip, text='bad, ugly')[0]
|
||||
|
||||
@@ -45,7 +39,6 @@ samples = opKSamplerAdvanced.sample(
|
||||
negative=negative_conditions,
|
||||
latent_image=initial_latent_image,
|
||||
)[0]
|
||||
unload_model()
|
||||
|
||||
vae_decoded = opVAEDecode.decode(samples=samples, vae=xl_base_vae)[0]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user