Test / app.py
NeoPy's picture
Update app.py
63829bb verified
raw
history blame contribute delete
240 Bytes
import gradio as gr
with gr.Blocks() as demo:
with gr.Row():
model_pth = gr.Dropdown()
with gr.Row(equal_height=True):
refresh = gr.Button("refresh")
model_index = gr.Dropdown()
demo.launch()