mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
re: Readd Refiner Step Math but cap max steps to 1000
This commit is contained in:
@@ -90,7 +90,7 @@ export const addSDXLRefinerToGraph = (
|
||||
type: 'denoise_latents',
|
||||
id: SDXL_REFINER_DENOISE_LATENTS,
|
||||
cfg_scale: refinerCFGScale,
|
||||
steps: refinerSteps,
|
||||
steps: Math.min(refinerSteps / (1 - Math.min(refinerStart, 0.99)), 1000),
|
||||
scheduler: refinerScheduler,
|
||||
denoising_start: refinerStart,
|
||||
denoising_end: 1,
|
||||
|
||||
Reference in New Issue
Block a user