mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix: one man's max is another man's min
This commit is contained in:
parent
ca0d60bee6
commit
94b5084cd5
@ -133,7 +133,7 @@ export const buildCanvasSDXLInpaintGraph = async (
|
||||
id: INPAINT_CREATE_MASK,
|
||||
is_intermediate,
|
||||
coherence_mode: canvasCoherenceMode,
|
||||
minimum_denoise: refinerModel ? Math.min(0.2, canvasCoherenceMinDenoise) : canvasCoherenceMinDenoise,
|
||||
minimum_denoise: refinerModel ? Math.max(0.2, canvasCoherenceMinDenoise) : canvasCoherenceMinDenoise,
|
||||
edge_radius: canvasCoherenceEdgeSize,
|
||||
},
|
||||
[SDXL_DENOISE_LATENTS]: {
|
||||
|
@ -156,7 +156,7 @@ export const buildCanvasSDXLOutpaintGraph = async (
|
||||
is_intermediate,
|
||||
coherence_mode: canvasCoherenceMode,
|
||||
edge_radius: canvasCoherenceEdgeSize,
|
||||
minimum_denoise: refinerModel ? Math.min(0.2, canvasCoherenceMinDenoise) : canvasCoherenceMinDenoise,
|
||||
minimum_denoise: refinerModel ? Math.max(0.2, canvasCoherenceMinDenoise) : canvasCoherenceMinDenoise,
|
||||
},
|
||||
[SDXL_DENOISE_LATENTS]: {
|
||||
type: 'denoise_latents',
|
||||
|
Loading…
Reference in New Issue
Block a user