mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix: SDXL Inpaint & Outpaint using regular Img2Img strength
This commit is contained in:
parent
3d8da67be3
commit
58d5c61c79
@ -53,7 +53,6 @@ export const buildCanvasSDXLInpaintGraph = (
|
||||
cfgScale: cfg_scale,
|
||||
scheduler,
|
||||
steps,
|
||||
img2imgStrength: strength,
|
||||
iterations,
|
||||
seed,
|
||||
shouldRandomizeSeed,
|
||||
@ -64,8 +63,12 @@ export const buildCanvasSDXLInpaintGraph = (
|
||||
maskBlurMethod,
|
||||
} = state.generation;
|
||||
|
||||
const { shouldUseSDXLRefiner, refinerStart, shouldConcatSDXLStylePrompt } =
|
||||
state.sdxl;
|
||||
const {
|
||||
sdxlImg2ImgDenoisingStrength: strength,
|
||||
shouldUseSDXLRefiner,
|
||||
refinerStart,
|
||||
shouldConcatSDXLStylePrompt,
|
||||
} = state.sdxl;
|
||||
|
||||
if (!model) {
|
||||
log.error('No model found in state');
|
||||
|
@ -59,7 +59,6 @@ export const buildCanvasSDXLOutpaintGraph = (
|
||||
cfgScale: cfg_scale,
|
||||
scheduler,
|
||||
steps,
|
||||
img2imgStrength: strength,
|
||||
iterations,
|
||||
seed,
|
||||
shouldRandomizeSeed,
|
||||
@ -72,8 +71,12 @@ export const buildCanvasSDXLOutpaintGraph = (
|
||||
infillMethod,
|
||||
} = state.generation;
|
||||
|
||||
const { shouldUseSDXLRefiner, refinerStart, shouldConcatSDXLStylePrompt } =
|
||||
state.sdxl;
|
||||
const {
|
||||
sdxlImg2ImgDenoisingStrength: strength,
|
||||
shouldUseSDXLRefiner,
|
||||
refinerStart,
|
||||
shouldConcatSDXLStylePrompt,
|
||||
} = state.sdxl;
|
||||
|
||||
if (!model) {
|
||||
log.error('No model found in state');
|
||||
|
Loading…
Reference in New Issue
Block a user