test / app.py
wenkai's picture
Update app.py
d9d6e11 verified
raw
history blame contribute delete
315 Bytes
import gradio as gr
from huggingface_hub import hf_hub_download
print("hello")
hf_hub_download(repo_id="wenkai/FAPM", filename="model/checkpoint_bp1.pth")
with gr.Blocks() as demo:
dropdown = gr.Dropdown(label="Country", choices=["USA", "Pakistan"], value="USA")
textbox = gr.Textbox()
demo.launch()