├── .gcloudignore ├── Dockerfile ├── Insurance - Model Training Notebook.ipynb ├── README.md ├── app.py ├── config.py ├── deployment_28042020.pkl ├── requirements.txt ├── static └── style.css └── templates └── home.html /.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pycaret/pycaret-deployment-google/HEAD/.gcloudignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pycaret/pycaret-deployment-google/HEAD/Dockerfile -------------------------------------------------------------------------------- /Insurance - Model Training Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pycaret/pycaret-deployment-google/HEAD/Insurance - Model Training Notebook.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pycaret/pycaret-deployment-google/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pycaret/pycaret-deployment-google/HEAD/app.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pycaret/pycaret-deployment-google/HEAD/config.py -------------------------------------------------------------------------------- /deployment_28042020.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pycaret/pycaret-deployment-google/HEAD/deployment_28042020.pkl -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pycaret/pycaret-deployment-google/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pycaret/pycaret-deployment-google/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pycaret/pycaret-deployment-google/HEAD/templates/home.html --------------------------------------------------------------------------------