Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -126,7 +126,7 @@ custom_css = """
|
|
| 126 |
}
|
| 127 |
"""
|
| 128 |
|
| 129 |
-
with gr.Blocks(css=custom_css) as demo:
|
| 130 |
# Interface setup with input and output
|
| 131 |
with gr.Row():
|
| 132 |
with gr.Column():
|
|
@@ -142,4 +142,4 @@ with gr.Blocks(css=custom_css) as demo:
|
|
| 142 |
btn.click(fn=remove_background_wrapper, inputs=image_input, outputs=[
|
| 143 |
output_foreground, output_background, output_foreground_mask, output_background_mask])
|
| 144 |
|
| 145 |
-
demo.launch(
|
|
|
|
| 126 |
}
|
| 127 |
"""
|
| 128 |
|
| 129 |
+
with gr.Blocks(css=custom_css, theme=gr.themes.Default()) as demo:
|
| 130 |
# Interface setup with input and output
|
| 131 |
with gr.Row():
|
| 132 |
with gr.Column():
|
|
|
|
| 142 |
btn.click(fn=remove_background_wrapper, inputs=image_input, outputs=[
|
| 143 |
output_foreground, output_background, output_foreground_mask, output_background_mask])
|
| 144 |
|
| 145 |
+
demo.launch(debug=True)
|