Views
No views yet
1import joblib
2from huggingface_hub import hf_hub_download
3
4# Download model from Hugging Face Hub
5model_path = hf_hub_download(repo_id="maazali04-hf/house-prices-predictor", filename="house-prices-prediction.joblib")
6model = joblib.load(model_path)