Fix Gradio listening address

#2
by cbensimon HF staff - opened
Files changed (1) hide show
  1. gradio_app.py +1 -1
gradio_app.py CHANGED
@@ -197,4 +197,4 @@ iface = gr.Interface(fn=segment, inputs=gradio_inputs,
197
  examples=examples, title=title,
198
  description=description)
199
 
200
- iface.launch(enable_queue=True, debug=True)
 
197
  examples=examples, title=title,
198
  description=description)
199
 
200
+ iface.launch(enable_queue=True, server_name="0.0.0.0")