Book Image

Production-Ready Applied Deep Learning

By : Tomasz Palczewski, Jaejun (Brandon) Lee, Lenin Mookiah
Book Image

Production-Ready Applied Deep Learning

By: Tomasz Palczewski, Jaejun (Brandon) Lee, Lenin Mookiah

Overview of this book

Machine learning engineers, deep learning specialists, and data engineers encounter various problems when moving deep learning models to a production environment. The main objective of this book is to close the gap between theory and applications by providing a thorough explanation of how to transform various models for deployment and efficiently distribute them with a full understanding of the alternatives. First, you will learn how to construct complex deep learning models in PyTorch and TensorFlow. Next, you will acquire the knowledge you need to transform your models from one framework to the other and learn how to tailor them for specific requirements that deployment environments introduce. The book also provides concrete implementations and associated methodologies that will help you apply the knowledge you gain right away. You will get hands-on experience with commonly used deep learning frameworks and popular cloud services designed for data analytics at scale. Additionally, you will get to grips with the authors’ collective knowledge of deploying hundreds of AI-based services at a large scale. By the end of this book, you will have understood how to convert a model developed for proof of concept into a production-ready application optimized for a particular production setting.
Table of Contents (19 chapters)
1
Part 1 – Building a Minimum Viable Product
6
Part 2 – Building a Fully Featured Product
10
Part 3 – Deployment and Maintenance

Weight sharing – reducing the number of distinct weight values

Weight sharing or weight clustering is another technique that can significantly reduce the size of the model. The idea behind this technique is rather simple: let’s cluster the weights into groups (or clusters) and use the centroid values instead of individual weight values. In this case, we can store the value of each centroid instead of storing every value for the weights. Therefore, we can compress the model size significantly and possibly speed up the inference process. The key idea behind weight sharing is graphically presented in Figure 10.2 (adapted from the official TF blog post on weight clustering API: https://blog.tensorflow.org/2020/08/tensorflow-model-optimization-toolkit-weight-clustering-api.html):

Figure 10.2 – An illustration of weight sharing

Let’s learn how to perform weight sharing in TF before looking at how to do the same in PyTorch.

Performing...