Update app.py
Browse files
app.py
CHANGED
|
@@ -159,10 +159,10 @@ body, .gradio-container {
|
|
| 159 |
# ✅ Gradio interface
|
| 160 |
demo = gr.Interface(
|
| 161 |
fn=deblur_image,
|
| 162 |
-
inputs=gr.File(label="
|
| 163 |
outputs=gr.Image(type="numpy", label="Deblurred Result"),
|
| 164 |
title="Image Deblurring",
|
| 165 |
-
description="Upload a blurry image
|
| 166 |
css=custom_css
|
| 167 |
)
|
| 168 |
|
|
|
|
| 159 |
# ✅ Gradio interface
|
| 160 |
demo = gr.Interface(
|
| 161 |
fn=deblur_image,
|
| 162 |
+
inputs=gr.File(label="Imput", type="filepath"),
|
| 163 |
outputs=gr.Image(type="numpy", label="Deblurred Result"),
|
| 164 |
title="Image Deblurring",
|
| 165 |
+
description="Upload a blurry image.",
|
| 166 |
css=custom_css
|
| 167 |
)
|
| 168 |
|