Docker + Flask | Dockerizing a Python API
Author(s): Billy Bonaros Originally published on Towards AI. Docker containers are one of the hottest trends in software development right now. Not only it makes it easier to create, deploy and run applications but by using containers you are confident that your …
Create a Virtual Environment in Windows OS and Run a Flask Application Locally
Author(s): Bala Gopal Reddy Peddireddy Originally published on Towards AI. Easily create a virtual world for your projects A virtual environment creates separate space for a project with its dependencies at a definite place. This environment is distinct to the specific project …
Deploying a Keras Model as an API Using Flask
Author(s): Yan Gobeil Originally published on Towards AI. Using the flask library to deploy a language identifier Keras model into a web app and URL based API. Training a neural network to achieve a specific task is pretty fun and interesting, but …