Does upscale-model not work with sd-server? #1853
|
I don't see anywhere in the ui to enable it and it definitely isn't activating by default. |
Answered by
asadbek066
Aug 4, 2026
Replies: 1 comment
|
For server generation, use the high-res/upscaler flow instead:
./sd-server \
--model /path/to/model.gguf \
--hires-upscalers-dir /path/to/upscalers
curl http://127.0.0.1:1234/sdapi/v1/upscalers
{
"prompt": "a detailed landscape",
"width": 512,
"height": 512,
"steps": 20,
"enable_hr": true,
"hr_upscaler": "RealESRGAN_x4plus_anime_6B",
"hr_scale": 2,
"hr_steps": 10,
"denoising_strength": 0.7
}The model must be at the top level of If you only want to upscale an existing image without doing the second diffusion pass, continue using the CLI: ./sd-cli -M upscale --upscale-model /path/to/upscaler.pth -i input.png -o output.pngThe current API behavior is documented in |
0 replies
Answer selected by
sxales
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
--upscale-modelis the standalone CLI upscaling path; it is not automatically applied to everysd-servergeneration, and the bundled UI currently does not expose that switch.For server generation, use the high-res/upscaler flow instead:
txt2imgrequest using the returned model name (normally the filename stem):{ "prompt": "a detailed landscape", "width": 512, "height": 512, "steps": 20, "enable…