├── .gitignore ├── LICENSE ├── README.md └── app ├── .ipynb_checkpoints └── diabetes-checkpoint.ipynb ├── Dockerfile ├── app.py ├── diabetes.csv ├── diabetes.ipynb ├── diabetis.yaml ├── model.pkl └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satyamuralidhar/ML-Ops_ModelDeployment_k8s/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satyamuralidhar/ML-Ops_ModelDeployment_k8s/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satyamuralidhar/ML-Ops_ModelDeployment_k8s/HEAD/README.md -------------------------------------------------------------------------------- /app/.ipynb_checkpoints/diabetes-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satyamuralidhar/ML-Ops_ModelDeployment_k8s/HEAD/app/.ipynb_checkpoints/diabetes-checkpoint.ipynb -------------------------------------------------------------------------------- /app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satyamuralidhar/ML-Ops_ModelDeployment_k8s/HEAD/app/Dockerfile -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satyamuralidhar/ML-Ops_ModelDeployment_k8s/HEAD/app/app.py -------------------------------------------------------------------------------- /app/diabetes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satyamuralidhar/ML-Ops_ModelDeployment_k8s/HEAD/app/diabetes.csv -------------------------------------------------------------------------------- /app/diabetes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satyamuralidhar/ML-Ops_ModelDeployment_k8s/HEAD/app/diabetes.ipynb -------------------------------------------------------------------------------- /app/diabetis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satyamuralidhar/ML-Ops_ModelDeployment_k8s/HEAD/app/diabetis.yaml -------------------------------------------------------------------------------- /app/model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satyamuralidhar/ML-Ops_ModelDeployment_k8s/HEAD/app/model.pkl -------------------------------------------------------------------------------- /app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satyamuralidhar/ML-Ops_ModelDeployment_k8s/HEAD/app/requirements.txt --------------------------------------------------------------------------------