├── .gitignore ├── Dockerfile ├── Dockerfile_python ├── LICENSE ├── README.md ├── data └── titanic.csv ├── example_http_requests.bash ├── example_http_requests.py ├── flask_api.py ├── model ├── model.pkl └── model_columns.pkl ├── requirements.txt └── tests └── tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimlnerd/Deploy-machine-learning-model/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimlnerd/Deploy-machine-learning-model/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile_python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimlnerd/Deploy-machine-learning-model/HEAD/Dockerfile_python -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimlnerd/Deploy-machine-learning-model/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimlnerd/Deploy-machine-learning-model/HEAD/README.md -------------------------------------------------------------------------------- /data/titanic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimlnerd/Deploy-machine-learning-model/HEAD/data/titanic.csv -------------------------------------------------------------------------------- /example_http_requests.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimlnerd/Deploy-machine-learning-model/HEAD/example_http_requests.bash -------------------------------------------------------------------------------- /example_http_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimlnerd/Deploy-machine-learning-model/HEAD/example_http_requests.py -------------------------------------------------------------------------------- /flask_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimlnerd/Deploy-machine-learning-model/HEAD/flask_api.py -------------------------------------------------------------------------------- /model/model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimlnerd/Deploy-machine-learning-model/HEAD/model/model.pkl -------------------------------------------------------------------------------- /model/model_columns.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimlnerd/Deploy-machine-learning-model/HEAD/model/model_columns.pkl -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimlnerd/Deploy-machine-learning-model/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aimlnerd/Deploy-machine-learning-model/HEAD/tests/tests.py --------------------------------------------------------------------------------