Merge pull request #125 from hodanov/feature/repair_stable_diffusion_xl

Repair a default value of step arg.
This commit is contained in:
hodanov 2024-07-21 12:13:40 +09:00 committed by GitHub
commit 744b9c19c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -111,7 +111,7 @@ class SDXLTxt2Img:
image = self.refiner(
prompt=prompt,
negative_prompt=n_prompt,
num_inference_steps=50,
num_inference_steps=steps,
strength=0.3,
guidance_scale=7.5,
generator=generator,