Spaces:
Running
on
T4
Running
on
T4
Commit
•
b4c4058
1
Parent(s):
4f81b41
Fix Gradio listening address (#2)
Browse files- Fix Gradio listening address (bbc698cd7dac7e28f81d2bc5d17aae117db5ae48)
Co-authored-by: Charles Bensimon <cbensimon@users.noreply.huggingface.co>
- 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,
|
|
|
197 |
examples=examples, title=title,
|
198 |
description=description)
|
199 |
|
200 |
+
iface.launch(enable_queue=True, server_name="0.0.0.0")
|