bear_classifier / app.py
MichaelKonu's picture
Create app.py
0a6d9bf
raw
history blame
252 Bytes
from huggingface_hub import hf_hub_download
# Download the model file
model_file = hf_hub_download(
repo_id="MichaelKonu/MoneyMike",
filename="model.pkl"
)
# Now you can load the model from the downloaded file
learn = load_model(model_file)