| 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() | |