Singularity666 commited on
Commit
a47b1ea
·
1 Parent(s): 3f00a5c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -15,9 +15,9 @@ def main():
15
  upscaled_image_bytes = upscale_image_esrgan(image_bytes)
16
 
17
  st.success("Further upscaling image with GFPGAN...")
18
- img = further_upscale_image(upscaled_image_bytes)
19
 
20
- st.image(img, caption='Upscaled Image', use_column_width=True)
21
 
22
  if __name__ == "__main__":
23
- main()
 
15
  upscaled_image_bytes = upscale_image_esrgan(image_bytes)
16
 
17
  st.success("Further upscaling image with GFPGAN...")
18
+ download_link = further_upscale_image(upscaled_image_bytes)
19
 
20
+ st.markdown(download_link, unsafe_allow_html=True)
21
 
22
  if __name__ == "__main__":
23
+ main()