Spaces:
Sleeping
Sleeping
Commit
·
a47b1ea
1
Parent(s):
3f00a5c
Update app.py
Browse files
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 |
-
|
19 |
|
20 |
-
st.
|
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()
|