Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,4 @@
|
|
|
|
1 |
import torch
|
2 |
from PIL import Image
|
3 |
from RealESRGAN import RealESRGAN
|
@@ -114,8 +115,11 @@ iface = gr.Interface(
|
|
114 |
gr.Gallery(label="Final Images"), # Display the processed images
|
115 |
gr.File(label="Download Final Images (ZIP)") # Provide a ZIP file for download
|
116 |
],
|
117 |
-
title="
|
118 |
description="Upload multiple images (.jpg, .png), enhance using AI, adjust DPI, resize, and download the final results as a ZIP file."
|
119 |
)
|
120 |
|
121 |
-
iface.launch(debug=True)
|
|
|
|
|
|
|
|
1 |
+
|
2 |
import torch
|
3 |
from PIL import Image
|
4 |
from RealESRGAN import RealESRGAN
|
|
|
115 |
gr.Gallery(label="Final Images"), # Display the processed images
|
116 |
gr.File(label="Download Final Images (ZIP)") # Provide a ZIP file for download
|
117 |
],
|
118 |
+
title="Multi-Image Enhancer",
|
119 |
description="Upload multiple images (.jpg, .png), enhance using AI, adjust DPI, resize, and download the final results as a ZIP file."
|
120 |
)
|
121 |
|
122 |
+
iface.launch(debug=True)
|
123 |
+
|
124 |
+
|
125 |
+
|