Updated FreeU node to v2 (gives less overcooked results)

This commit is contained in:
MoonRide303 2023-10-18 09:53:43 +02:00
parent c751758016
commit 9532d167f8
3 changed files with 11 additions and 3 deletions

View File

@ -1 +1 @@
version = '2.1.700'
version = '2.1.701'

View File

@ -20,7 +20,7 @@ import fcbh.latent_formats
from fcbh.sd import load_checkpoint_guess_config
from nodes import VAEDecode, EmptyLatentImage, VAEEncode, VAEEncodeTiled, VAEDecodeTiled, VAEEncodeForInpaint, \
ControlNetApplyAdvanced
from fcbh_extras.nodes_freelunch import FreeU
from fcbh_extras.nodes_freelunch import FreeU_V2
from fcbh.sample import prepare_mask
from modules.patch import patched_sampler_cfg_function, patched_model_function_wrapper
from fcbh.lora import model_lora_keys_unet, model_lora_keys_clip, load_lora
@ -34,7 +34,7 @@ opVAEDecodeTiled = VAEDecodeTiled()
opVAEEncodeTiled = VAEEncodeTiled()
opVAEEncodeForInpaint = VAEEncodeForInpaint()
opControlNetApplyAdvanced = ControlNetApplyAdvanced()
opFreeU = FreeU()
opFreeU = FreeU_V2()
class StableDiffusionModel:

View File

@ -1,3 +1,11 @@
# 2.1.701
* Updated FreeU node to v2 (gives less overcooked results).
# 2.1.699
* Disabled smart memory management (solves some memory issues).
# 2.1.698
* Added support for loading model files from subfolders.