├── Procfile ├── README.md ├── app.py ├── final_iris_model.h5 ├── iris_scaler.pkl ├── requirements.txt └── templates ├── home.html └── prediction.html /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptasoumya26/ml-deployment-app-heroku/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptasoumya26/ml-deployment-app-heroku/HEAD/app.py -------------------------------------------------------------------------------- /final_iris_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptasoumya26/ml-deployment-app-heroku/HEAD/final_iris_model.h5 -------------------------------------------------------------------------------- /iris_scaler.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptasoumya26/ml-deployment-app-heroku/HEAD/iris_scaler.pkl -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptasoumya26/ml-deployment-app-heroku/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptasoumya26/ml-deployment-app-heroku/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/prediction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptasoumya26/ml-deployment-app-heroku/HEAD/templates/prediction.html --------------------------------------------------------------------------------