ProdTaken (purchase of the tourism package).1import joblib
2from huggingface_hub import hf_hub_download
3
4model_path = hf_hub_download(repo_id="naveenmuppaneni/tourism-purchase-predictor-rf", filename="best_model.joblib")
5model = joblib.load(model_path)
6# model is a sklearn Pipeline: model.predict(X) or model.predict_proba(X)