Spaces:
Running
on
Zero
Running
on
Zero
update
Browse files- app.py +2 -2
- upscale_image.py +2 -2
app.py
CHANGED
@@ -18,8 +18,8 @@ if __name__ == "__main__":
|
|
18 |
fn=gradio_upscale,
|
19 |
inputs="image",
|
20 |
outputs="image",
|
21 |
-
title="
|
22 |
-
description="
|
23 |
)
|
24 |
# インターフェースを公開
|
25 |
iface.launch(share=True)
|
|
|
18 |
fn=gradio_upscale,
|
19 |
inputs="image",
|
20 |
outputs="image",
|
21 |
+
title="StableDiffusion x4 Upscale(recomment image size are 64 -128)",
|
22 |
+
description="This is ZeroGPU.only 2 minute to time you can",
|
23 |
)
|
24 |
# インターフェースを公開
|
25 |
iface.launch(share=True)
|
upscale_image.py
CHANGED
@@ -17,8 +17,8 @@ def execute(input_image):
|
|
17 |
pipe.vae.enable_tiling()
|
18 |
# 画像のパスとプロンプト
|
19 |
prompt = "beautiful girl"
|
20 |
-
first_resize_w =
|
21 |
-
first_resize_h =
|
22 |
|
23 |
# 画像の読み込みとリサイズ
|
24 |
image = input_image#.convert("RGB")
|
|
|
17 |
pipe.vae.enable_tiling()
|
18 |
# 画像のパスとプロンプト
|
19 |
prompt = "beautiful girl"
|
20 |
+
first_resize_w = 0
|
21 |
+
first_resize_h = 0
|
22 |
|
23 |
# 画像の読み込みとリサイズ
|
24 |
image = input_image#.convert("RGB")
|