├── README.md ├── app.py ├── iris.csv ├── model.pkl ├── model.py └── templates └── index.html /README.md: -------------------------------------------------------------------------------- 1 | # ML-MODEL-DEPLOYMENT-USING-FLASK -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddiquiamir/ML-MODEL-DEPLOYMENT-USING-FLASK/HEAD/app.py -------------------------------------------------------------------------------- /iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddiquiamir/ML-MODEL-DEPLOYMENT-USING-FLASK/HEAD/iris.csv -------------------------------------------------------------------------------- /model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddiquiamir/ML-MODEL-DEPLOYMENT-USING-FLASK/HEAD/model.pkl -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddiquiamir/ML-MODEL-DEPLOYMENT-USING-FLASK/HEAD/model.py -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddiquiamir/ML-MODEL-DEPLOYMENT-USING-FLASK/HEAD/templates/index.html --------------------------------------------------------------------------------