Akjava commited on
Commit
5359828
·
1 Parent(s): 4fec5dd
Files changed (2) hide show
  1. app.py +2 -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="Image Convert to 128x128 and Upscale to 512x512",
22
- description="force convert to 128x128 image and upscale 512x512 with stable-diffusion-x4-upscaler",
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 = 64
21
- first_resize_h = 64
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")