File size: 220 Bytes
67b9682
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
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)
    )