ghostsInTheMachine commited on
Commit
4446ce3
·
verified ·
1 Parent(s): cf597e2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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(theme="default", debug=True)
 
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)