Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -104,6 +104,15 @@ description = r"""
|
|
104 |
"""
|
105 |
examples = [['./input.jpeg'],]
|
106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
# output = ImageSlider(position=0.5,label='Image without background', type="pil", show_download_button=True)
|
108 |
# demo = gr.Interface(fn=process,inputs="image", outputs=output, examples=examples, title=title, description=description)
|
109 |
demo = gr.Interface(fn=process,inputs="image", outputs="image", examples=examples, title=title, description=description)
|
|
|
104 |
"""
|
105 |
examples = [['./input.jpeg'],]
|
106 |
|
107 |
+
demo = Interface(
|
108 |
+
fn=process,
|
109 |
+
inputs="image",
|
110 |
+
outputs="image",
|
111 |
+
examples=examples,
|
112 |
+
title="<center>AI For All</center>",
|
113 |
+
description=description,
|
114 |
+
)
|
115 |
+
|
116 |
# output = ImageSlider(position=0.5,label='Image without background', type="pil", show_download_button=True)
|
117 |
# demo = gr.Interface(fn=process,inputs="image", outputs=output, examples=examples, title=title, description=description)
|
118 |
demo = gr.Interface(fn=process,inputs="image", outputs="image", examples=examples, title=title, description=description)
|