├── app.py ├── assets └── readme-img.png ├── dataset └── data.csv ├── img ├── data.png └── le_ohe.png ├── model.ipynb ├── model.pkl ├── readme.MD └── templates └── index.html /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selmanbaskaya/Machine-Learning-and-Web-Development/HEAD/app.py -------------------------------------------------------------------------------- /assets/readme-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selmanbaskaya/Machine-Learning-and-Web-Development/HEAD/assets/readme-img.png -------------------------------------------------------------------------------- /dataset/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selmanbaskaya/Machine-Learning-and-Web-Development/HEAD/dataset/data.csv -------------------------------------------------------------------------------- /img/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selmanbaskaya/Machine-Learning-and-Web-Development/HEAD/img/data.png -------------------------------------------------------------------------------- /img/le_ohe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selmanbaskaya/Machine-Learning-and-Web-Development/HEAD/img/le_ohe.png -------------------------------------------------------------------------------- /model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selmanbaskaya/Machine-Learning-and-Web-Development/HEAD/model.ipynb -------------------------------------------------------------------------------- /model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selmanbaskaya/Machine-Learning-and-Web-Development/HEAD/model.pkl -------------------------------------------------------------------------------- /readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selmanbaskaya/Machine-Learning-and-Web-Development/HEAD/readme.MD -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selmanbaskaya/Machine-Learning-and-Web-Development/HEAD/templates/index.html --------------------------------------------------------------------------------