HowardZhangdqs's picture
懒得写commit了
ccb6afe
raw
history blame
234 Bytes
import gradio as gr
from interface import create_interface
gr.close_all()
demo = create_interface()
if __name__ == "__main__":
demo.launch(
server_name="localhost",
server_port=7860,
# share=True
)