File size: 316 Bytes
aacd9e8 |
1 2 3 4 5 6 7 8 9 10 |
## Start the gradio server
from gradio_utils import get_demo
#You will need to restart the kernel each time you rerun this cell;
#otherwise, the port will not be available.
debug = False # change this to True if you want to debug
demo = get_demo()
demo.launch(server_name="0.0.0.0", server_port=9999, debug=debug) |