1
0
Fork 0

correct param name for upscale mask

This commit is contained in:
Sean Sube 2023-02-18 22:53:57 -06:00
parent 30f16035bc
commit b7a780bacc
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
2 changed files with 19 additions and 1 deletions

View File

@ -105,7 +105,7 @@ def upscale_outpaint(
guidance_scale=params.cfg,
height=size.height,
latents=latents,
mask=tile_mask,
mask_image=tile_mask,
negative_prompt=params.negative_prompt,
num_inference_steps=params.steps,
width=size.width,

View File

@ -0,0 +1,18 @@
test_host="${1:-127.0.0.1}"
test_images=0
while true;
do
curl "http://${test_host}:5000/api/txt2img?"\
'cfg=16.00&steps=35&scheduler=deis-multi&seed=-1&'\
'prompt=an+astronaut+eating+a+hamburger&negativePrompt=&'\
'model=stable-diffusion-v1-5&platform=any&'\
'upscaling=upscaling-real-esrgan-x2-plus&correction=correction-codeformer&'\
'lpw=false&width=512&height=512&upscaleOrder=correction-both' \
-X 'POST' \
--compressed \
--insecure || break;
((test_images++));
echo "waiting after $test_images";
sleep 30;
done