├── .gitignore ├── Dockerfile ├── LICENSE ├── Model_training.ipynb ├── README.md ├── app.py ├── iris_trained_model.pkl └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanujjain/deploy-ml-model/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanujjain/deploy-ml-model/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanujjain/deploy-ml-model/HEAD/LICENSE -------------------------------------------------------------------------------- /Model_training.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanujjain/deploy-ml-model/HEAD/Model_training.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanujjain/deploy-ml-model/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanujjain/deploy-ml-model/HEAD/app.py -------------------------------------------------------------------------------- /iris_trained_model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanujjain/deploy-ml-model/HEAD/iris_trained_model.pkl -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanujjain/deploy-ml-model/HEAD/requirements.txt --------------------------------------------------------------------------------