Views
No views yet
| Metric | Value |
|---|---|
| Accuracy | 0.9346 |
| F1 Score | 0.8163 |
| Precision | 0.8911 |
| Recall | 0.7531 |
| ROC AUC | 0.9670 |
1import joblib
2from huggingface_hub import hf_hub_download
3
4# Download model
5model_path = hf_hub_download(
6 repo_id="jskswamy/wellness-tourism-model",
7 filename="wellness_tourism_model.joblib"
8)
9
10# Load and use
11model = joblib.load(model_path)
12predictions = model.predict(your_data)