Spaces:
Sleeping
Sleeping
mrbeliever
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -94,6 +94,11 @@ gr.HTML('''
|
|
94 |
</p>
|
95 |
''')
|
96 |
|
|
|
|
|
|
|
|
|
|
|
97 |
# output = ImageSlider(position=0.5,label='Image without background', type="pil", show_download_button=True)
|
98 |
# demo = gr.Interface(fn=process,inputs="image", outputs=output, examples=examples, title=title, description=description)
|
99 |
demo = gr.Interface(fn=process,inputs="image", outputs="image", examples=examples, title=title, description=description)
|
|
|
94 |
</p>
|
95 |
''')
|
96 |
|
97 |
+
title = ""
|
98 |
+
description = r"""
|
99 |
+
"""
|
100 |
+
examples = [['./input.jpg'],]
|
101 |
+
|
102 |
# output = ImageSlider(position=0.5,label='Image without background', type="pil", show_download_button=True)
|
103 |
# demo = gr.Interface(fn=process,inputs="image", outputs=output, examples=examples, title=title, description=description)
|
104 |
demo = gr.Interface(fn=process,inputs="image", outputs="image", examples=examples, title=title, description=description)
|