Skip to content

Commit

Permalink
Added missing parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
SeargeDP committed Aug 3, 2023
1 parent a959e11 commit 5aa23e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion searge_sdxl_sampler_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def INPUT_TYPES(s):

CATEGORY = "Searge/Sampling"

def sample(self, base_model, base_positive, base_negative, refiner_model, refiner_positive, refiner_negative, image, vae, noise_seed, steps, cfg, sampler_name, scheduler, base_ratio, denoise, upscale_model=None, scaled_width=None, scaled_height=None, noise_offset=None, refiner_strength=None):
def sample(self, base_model, base_positive, base_negative, refiner_model, refiner_positive, refiner_negative, image, vae, noise_seed, steps, cfg, sampler_name, scheduler, base_ratio, denoise, softness, upscale_model=None, scaled_width=None, scaled_height=None, noise_offset=None, refiner_strength=None):
base_steps = int(steps * base_ratio)

if noise_offset is None:
Expand Down

0 comments on commit 5aa23e5

Please sign in to comment.