├── Insurance - Model Training Notebook.ipynb ├── Procfile ├── README.md ├── app.py ├── deployment_28042020.pkl ├── requirements.txt ├── static └── style.css └── templates └── home.html /Insurance - Model Training Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pycaret/deployment-heroku/HEAD/Insurance - Model Training Notebook.ipynb -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pycaret/deployment-heroku/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pycaret/deployment-heroku/HEAD/app.py -------------------------------------------------------------------------------- /deployment_28042020.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pycaret/deployment-heroku/HEAD/deployment_28042020.pkl -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pycaret/deployment-heroku/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pycaret/deployment-heroku/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pycaret/deployment-heroku/HEAD/templates/home.html --------------------------------------------------------------------------------