fixed issue in server_name
Browse files
app.py
CHANGED
|
@@ -46,4 +46,4 @@ with gr.Blocks() as demo:
|
|
| 46 |
|
| 47 |
btn.click(fn=predict_play, inputs=[outlook, temp, humidity, wind], outputs=output)
|
| 48 |
|
| 49 |
-
demo.launch(
|
|
|
|
| 46 |
|
| 47 |
btn.click(fn=predict_play, inputs=[outlook, temp, humidity, wind], outputs=output)
|
| 48 |
|
| 49 |
+
demo.launch(server_name="0.0.0.0",server_port=7860,debug=True)
|