diff --git a/src/bot/commands/ai/advanced/imagine.ts b/src/bot/commands/ai/advanced/imagine.ts index 1e9b6a2..09c90cc 100644 --- a/src/bot/commands/ai/advanced/imagine.ts +++ b/src/bot/commands/ai/advanced/imagine.ts @@ -104,7 +104,6 @@ export default async function AdvancedImagine( width: width, post_processing: [ ModelGenerationInputPostProcessingTypes.RealESRGAN_x4plus, - ModelGenerationInputPostProcessingTypes.GFPGAN, ], karras: true, tiling: false, diff --git a/src/bot/commands/ai/imagine.ts b/src/bot/commands/ai/imagine.ts index 948b243..da2ce4a 100644 --- a/src/bot/commands/ai/imagine.ts +++ b/src/bot/commands/ai/imagine.ts @@ -89,13 +89,12 @@ export default async function Imagine( let prompt: ImageGenerationInput = { prompt: image + "### " + negative_prompt, params: { - sampler_name: ModelGenerationInputStableSamplers.k_dpm_adaptive, + sampler_name: ModelGenerationInputStableSamplers.k_euler, cfg_scale: 30, height: 512, width: 512, post_processing: [ ModelGenerationInputPostProcessingTypes.RealESRGAN_x4plus, - ModelGenerationInputPostProcessingTypes.NMKD_Siax ], clip_skip: 2, facefixer_strength: 1,