Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tourist Recommendation System #550

Merged
merged 2 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions Recommendation Systems/tourist_recommendation_system/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
## Tourist Recommendation System

### 🎯 **Goal**

The primary goal of the Tourist Recommendation System is to provide personalized travel recommendations to users based on their preferences, past travel experiences, and interests. The purpose of this project is to enhance the travel planning experience by suggesting popular tourist attractions, activities, and accommodations tailored to individual users, ultimately making their trips more enjoyable and efficient.

### 🧵 **Dataset**

Link: https://www.kaggle.com/datasets/saketk511/travel-dataset-guide-to-indias-must-see-places

### 🧮 **What I had done!**

- Data Collection: Gathered the dataset from Kaggle, which includes details about tourist attractions and user ratings.
- Data Preprocessing: Cleaned the dataset by handling missing values, standardizing formats, and removing duplicates.
- Exploratory Data Analysis (EDA): Analyzed the dataset to understand trends, distributions, and insights about popular attractions.
- Feature Engineering: Created relevant features such as average ratings, location tags, and user preferences to enhance the recommendation process.
- Model Selection: Chose collaborative filtering and content-based filtering methods for generating recommendations based on user preferences.
- Model Training: Implemented the selected algorithms and trained the models using the prepared dataset.
- Evaluation: Assessed the performance of the recommendation system using metrics such as Mean Absolute Error (MAE) and Root Mean Squared Error (RMSE).

### 🚀 **Models Implemented**

- Content-Based Filtering: This model is selected to recommend attractions based on their features and attributes (e.g., type of attraction, location). It ensures that users receive recommendations aligned with their specific interests.

### 📚 **Libraries Needed**

- Pandas: For data manipulation and analysis.
- NumPy: For numerical operations and handling arrays.
- Scikit-learn: For implementing machine learning algorithms and evaluation metrics.
- Matplotlib: For data visualization.
Loading
Loading