From c5aac79d5c7269f0dabadeecf8bf5c1f09964737 Mon Sep 17 00:00:00 2001 From: Christopher Layne Date: Sun, 24 Mar 2024 12:02:24 -0700 Subject: [PATCH] Add additional step options * Add some "economy" step options for quicker runs and less of an effect. --- __init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/__init__.py b/__init__.py index f59abd3..5cc2a06 100644 --- a/__init__.py +++ b/__init__.py @@ -43,7 +43,7 @@ def INPUT_TYPES(s): "required": { "upscale_model": ("UPSCALE_MODEL",), "images": ("IMAGE",), - "steps": (["25", "50", "100", "250", "500", "1000"], {"default": "100"}), + "steps": (["6", "12", "25", "50", "100", "250", "500", "1000"], {"default": "100"}), "pre_downscale": (['None', '1/2', '1/4'], {"default": "None"}), "post_downscale": (['None', 'Original Size', '1/2', '1/4'], {"default": "None"}), "downsample_method": (['Nearest', 'Lanczos'], {"default": "Lanczos"}), @@ -91,7 +91,7 @@ def INPUT_TYPES(s): "required": { "model": (model_list, {'default': default_path}), "images": ("IMAGE",), - "steps": (["25", "50", "100", "250", "500", "1000"], {"default": "100"}), + "steps": (["6", "12", "25", "50", "100", "250", "500", "1000"], {"default": "100"}), "pre_downscale": (['None', '1/2', '1/4'], {"default": "None"}), "post_downscale": (['None', 'Original Size', '1/2', '1/4'], {"default": "None"}), "downsample_method": (['Nearest', 'Lanczos'], {"default": "Lanczos"}),