Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -31,10 +31,9 @@ def inference(images, scale):
|
|
| 31 |
|
| 32 |
return results
|
| 33 |
|
| 34 |
-
title = "
|
| 35 |
description = (
|
| 36 |
-
"This advanced demo for Real-ESRGAN allows you to upscale multiple images "
|
| 37 |
-
"with different models and resolutions. Choose the scale and upload images for high-resolution enhancement."
|
| 38 |
)
|
| 39 |
article = (
|
| 40 |
"<div style='text-align: center;'>Twitter "
|
|
@@ -57,7 +56,8 @@ gr.Interface(
|
|
| 57 |
title=title,
|
| 58 |
description=description,
|
| 59 |
article=article,
|
| 60 |
-
examples=[['groot.jpeg', '2x']],
|
| 61 |
allow_flagging='never',
|
| 62 |
cache_examples=False,
|
|
|
|
| 63 |
).launch()
|
|
|
|
| 31 |
|
| 32 |
return results
|
| 33 |
|
| 34 |
+
title = "✨ Real ESRGAN UpScale: 2x 4x 8x"
|
| 35 |
description = (
|
| 36 |
+
"This advanced demo for Real-ESRGAN allows you to upscale multiple images with different models and resolutions. \nChoose the scale and upload images for high-resolution enhancement."
|
|
|
|
| 37 |
)
|
| 38 |
article = (
|
| 39 |
"<div style='text-align: center;'>Twitter "
|
|
|
|
| 56 |
title=title,
|
| 57 |
description=description,
|
| 58 |
article=article,
|
| 59 |
+
examples=[['groot.jpeg', '2x'], ['woman.jpg', '4x']],
|
| 60 |
allow_flagging='never',
|
| 61 |
cache_examples=False,
|
| 62 |
+
theme="soft"
|
| 63 |
).launch()
|