Update app.py
Browse files
app.py
CHANGED
@@ -79,18 +79,6 @@ css = """
|
|
79 |
}
|
80 |
"""
|
81 |
|
82 |
-
demo = gr.Interface(
|
83 |
-
fn=process_img,
|
84 |
-
inputs=[
|
85 |
-
gr.Image(type='pil', label='input'),
|
86 |
-
gr.Textbox(label="Image Filename", interactive=False)
|
87 |
-
],
|
88 |
-
outputs=[gr.Image(type='pil', label='output')],
|
89 |
-
title=title,
|
90 |
-
description=description,
|
91 |
-
examples=examples,
|
92 |
-
css=css
|
93 |
-
)
|
94 |
|
95 |
|
96 |
with gr.Blocks() as demo:
|
|
|
79 |
}
|
80 |
"""
|
81 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
|
83 |
|
84 |
with gr.Blocks() as demo:
|