singhina commited on
Commit
9bc0d7d
·
verified ·
1 Parent(s): b6715e3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +32 -0
README.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: [en]
3
+ license: apache-2.0
4
+ task_categories: [tabular-classification]
5
+ pretty_name: Tourism Package Prediction (Wellness)
6
+ size_categories: [1K<n<10K]
7
+ tags: [tourism, marketing, classification, mlops]
8
+ ---
9
+
10
+ # Tourism Package Prediction Dataset
11
+
12
+ Dataset from **Visit with Us** project.
13
+ Contains customer & interaction features for predicting purchase of the **Wellness Tourism Package** (`ProdTaken`).
14
+
15
+ ## Files
16
+ - `data/tourism.csv` — customer & interaction records with target label.
17
+
18
+ ## Features
19
+ - Demographic attributes (Age, Gender, MaritalStatus, Income, etc.)
20
+ - Travel behavior (Trips, Passport, Car ownership, etc.)
21
+ - Interaction data (Product pitched, Satisfaction, Followups, etc.)
22
+ - Target: `ProdTaken` (0 = No, 1 = Yes)
23
+
24
+ ## Quickstart
25
+
26
+ ```python
27
+ from datasets import load_dataset
28
+ ds = load_dataset("singhina/tourism-data", data_files="data/tourism.csv")
29
+ print(ds)
30
+ ```
31
+
32
+ *Uploaded on 2025-09-26*