from huggingface_hub import hf_hub_download import joblib REPO_ID = "KitHung/InternVL_food_lr35_ep10" def download_model(model_path): joblib.load( hf_hub_download(repo_id=REPO_ID, filename=model_path) )