Commit
·
6f6c115
1
Parent(s):
201fde0
Update app.py
Browse files
app.py
CHANGED
|
@@ -107,7 +107,7 @@ def resize_image(img, target_height):
|
|
| 107 |
def inference(input_image_b64, prompt, a_prompt, n_prompt, denoise_steps, upscale, alpha, cfg, seed):
|
| 108 |
input_image = readb64(input_image_b64)
|
| 109 |
|
| 110 |
-
input_image = resize_image(
|
| 111 |
|
| 112 |
process_size = 768
|
| 113 |
|
|
|
|
| 107 |
def inference(input_image_b64, prompt, a_prompt, n_prompt, denoise_steps, upscale, alpha, cfg, seed):
|
| 108 |
input_image = readb64(input_image_b64)
|
| 109 |
|
| 110 |
+
input_image = resize_image(input_image, 512)
|
| 111 |
|
| 112 |
process_size = 768
|
| 113 |
|