This is an end to end project for predicting flight fare and deploying the model using and in heroku platform.
The link of the deployed app : https://flight-fare-prediction-2021.herokuapp.com
This is a Flask web app which predicts fare of Flight ticket.
I started to learn different Machine Learning model to understand it and was always fascinated and curious to get most out of it by applying to real world problems. I understood the mathematics behind all supervised models i.e for this problem problem I used a Regression model(Randon Forest Regressor) and also performed Hyperparameter optimization. Finally I applied it this problem.
The Code is written in Python 3.6. If you are using a lower version of Python you can upgrade using the pip package, ensuring you have the latest version of pip. To install the required packages and libraries, run this command in the project directory after cloning the repository:
pip install -r requirements.txt
Login or signup in order to create virtual app. You can either connect your github profile or download ctl to manually deploy this project. You can Login/Signup using the link: https://id.heroku.com/login
├── static
│ ├── css
├── template
│ ├── home.html
├── Procfile
├── README.md
├── app.py
├── flight_price.ipynb
├── flight_rf.pkl
├── requirements.txt
- Flask
- Gunicorn
- Scikit-Learn
1.Use multiple Algorithms to find a better algorithm with better performance.
2.Optimize Flask app.py
3.Improve the Front-End to make the app look more attractive and interactive.