88hours's picture
First Demo with Gradio
aacd9e8
raw
history blame
316 Bytes
## 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)