赞
踩
因为业务需要提供一个可持续性访问的链接,所以gradio提供的临时链接(share=True)不能用。
用下面的代码即可部署到服务器IP。
import gradio as gr
import time
def test(x):
time.sleep(4)
return x
iface = gr.Interface(test, "textbox", "textbox")
iface.launch(server_name="0.0.0.0", server_port=1234)
注意:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。