Update efficiency_nodes.py

Cahnged eff loader sdxl steps to 64
This commit is contained in:
Nick Möhrmann
2023-10-22 21:45:03 +02:00
committed by GitHub
parent 8f62e4a3ee
commit c47684c8f6

View File

@@ -214,8 +214,8 @@ class TSC_EfficientLoaderSDXL(TSC_EfficientLoader):
"negative": ("STRING", {"default": "CLIP_NEGATIVE", "multiline": True}),
"token_normalization": (["none", "mean", "length", "length+mean"],),
"weight_interpretation": (["comfy", "A1111", "compel", "comfy++", "down_weight"],),
"empty_latent_width": ("INT", {"default": 1024, "min": 64, "max": MAX_RESOLUTION, "step": 128}),
"empty_latent_height": ("INT", {"default": 1024, "min": 64, "max": MAX_RESOLUTION, "step": 128}),
"empty_latent_width": ("INT", {"default": 1024, "min": 64, "max": MAX_RESOLUTION, "step": 64}),
"empty_latent_height": ("INT", {"default": 1024, "min": 64, "max": MAX_RESOLUTION, "step": 64}),
"batch_size": ("INT", {"default": 1, "min": 1, "max": 64})},
"optional": {"lora_stack": ("LORA_STACK", ), "cnet_stack": ("CONTROL_NET_STACK",),},
"hidden": { "prompt": "PROMPT", "my_unique_id": "UNIQUE_ID",},