Predicting Reselling Price
This is a machine learning project that can be used to predict the reselling price of the cars with the help of the details of the car. This is an end to end project in python and written with the help of Flask and deployed using Heroku.
For Required package/module installation, open the terminal and copy paste below command:
- pip install requirements.txt
Run the command in your terminal or command prompt.
You can now predict the price of your car before reselling it.
This python notebook has the code for the machine learning model which is trained using the data provided in "data.csv", the model is then dumped using pickle and further used to predict values using Flask. The accuracy of the model is 87% which can be increased with hyper parameter optimization or with the help of more data. I have used pickle to dump the model to further use it for deployment.
I have used Heroku cloud services to deploy the same and the link for the same can be found here: https://predictingcarprice.herokuapp.com/
Do star the repository, also suggestions and changes are most welcome.
Having a seperate environment setup is always expected to follow.