It predicts the selling price of a car given various parameters like year, selling_price, km_driven, fuel, seller_type, transmission, Owner
Vehicle dataset [https://www.kaggle.com/nehalbirla/vehicle-dataset-from-cardekho]
This dataset contains information about used cars listed on www.cardekho.com This data can be used for a lot of purposes such as price prediction to exemplify the use of linear regression in Machine Learning. The columns in the given dataset are as follows:
name, year, selling_price, km_driven, fuel, seller_type, transmission, Owner
Project is created with : HTML, CSS, Flask, Python, Machine Learning.
- Clone the repo
$ git clone https://github.com/TanmayThaker/Car-Price-Prediction
$ cd Car-Price-Prediction
- Initialize and activate a virtualenv:
$ virtualenv --no-site-packages env
$ source env/bin/activate
- Install the dependencies:
$ pip install -r requirements.txt
- Run the development server:
$ python app.py
- Navigate to http://localhost:8000