InternVL / download.py
Kit-Hung
Add: app files
67b9682
raw
history blame
220 Bytes
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)
)