Satyanjay commited on
Commit
0f5f8c2
·
verified ·
1 Parent(s): 0c44c32

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -2
README.md CHANGED
@@ -1,7 +1,45 @@
1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # Tourism Purchase Prediction Model
3
 
 
4
  This model predicts whether a customer will purchase the Wellness Tourism Package.
5
 
6
- Algorithm: Random Forest
7
- Tracking: MLflow
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
 
2
+ ---
3
+ language: en
4
+ tags:
5
+ - machine-learning
6
+ - classification
7
+ - sklearn
8
+ - random-forest
9
+ - mlops
10
+ license: mit
11
+ datasets:
12
+ - Satyanjay/Tourism_Project_Processed
13
+ metrics:
14
+ - accuracy
15
+ ---
16
+
17
  # Tourism Purchase Prediction Model
18
 
19
+ ## 📌 Overview
20
  This model predicts whether a customer will purchase the Wellness Tourism Package.
21
 
22
+ ## ⚙️ Model Details
23
+ - Algorithm: Random Forest Classifier
24
+ - Framework: Scikit-learn
25
+ - Experiment Tracking: MLflow
26
+
27
+ ## 📊 Performance
28
+ - Accuracy: 0.89
29
+ - Recall (Class 1): 0.52
30
+
31
+ ## 📂 Dataset
32
+ - Source: Hugging Face Dataset Hub
33
+ - Dataset: Satyanjay/Tourism_Project_Processed
34
+
35
+ ## 🚀 Usage
36
+ ```python
37
+ from huggingface_hub import hf_hub_download
38
+ import joblib
39
+
40
+ model_path = hf_hub_download(
41
+ repo_id="Satyanjay/Tourism_Model",
42
+ filename="best_model.pkl"
43
+ )
44
+
45
+ model = joblib.load(model_path)