Spaces:
Runtime error
Runtime error
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) | |