Free Webinar on How to Build a Low-Latency Deep Learning Based Flask App by CloudxLab

In this Hands-On Webinar. We will refactor the entire codebase of the project How to Deploy an Image Classification Model using Flask (). That monolithic code will be refactored to form two microservices - the flask service and model service. The model service acts as a server that renders pretrained Tensorflow model as a deep learning API, and keeps listening for any incoming requests. The flask service requests the model service, and displays the response from the model server. This way, we write cleaner code and promote service isolation. Further, we will introduce an engineering technique, wherein we introduce the concept of asynchrony using ZMQ networking library, in order to reduce deep learning api response time and thus make the app faster in return. By integrating ZMQ with this client-server architecture, we improve the latency of this microservice-based app. Upon completing this project, we w
Back to Top