├── Car_Price.ipynb ├── LICENSE ├── Procfile ├── README.md ├── app.py ├── car data.csv ├── regression_rf.pkl └── requirements.txt /Car_Price.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Car-PricePrediction/HEAD/Car_Price.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Car-PricePrediction/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Car-PricePrediction -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Car-PricePrediction/HEAD/app.py -------------------------------------------------------------------------------- /car data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Car-PricePrediction/HEAD/car data.csv -------------------------------------------------------------------------------- /regression_rf.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Car-PricePrediction/HEAD/regression_rf.pkl -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Car-PricePrediction/HEAD/requirements.txt --------------------------------------------------------------------------------