jskswamy/wellness-tourism-data
Viewer • Updated • 4.13k • 61
How to use jskswamy/wellness-tourism-model with Scikit-learn:
from huggingface_hub import hf_hub_download
import joblib
model = joblib.load(
hf_hub_download("jskswamy/wellness-tourism-model", "sklearn_model.joblib")
)
# only load pickle files from sources you trust
# read more about it here https://skops.readthedocs.io/en/stable/persistence.htmlThis model predicts whether a customer will purchase the Wellness Tourism Package offered by "Visit with Us" travel company.
This model is designed to help travel companies identify potential customers for wellness tourism packages based on customer demographics and travel history.
The model was trained on the Wellness Tourism Dataset containing customer information including:
| Metric | Value |
|---|---|
| Accuracy | 0.9346 |
| F1 Score | 0.8163 |
| Precision | 0.8911 |
| Recall | 0.7531 |
| ROC AUC | 0.9670 |
import joblib
from huggingface_hub import hf_hub_download
# Download model
model_path = hf_hub_download(
repo_id="jskswamy/wellness-tourism-model",
filename="wellness_tourism_model.joblib"
)
# Load and use
model = joblib.load(model_path)
predictions = model.predict(your_data)