Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Machine Learning Model Serving Patterns and Best Practices
Machine Learning Model Serving Patterns and Best Practices

Machine Learning Model Serving Patterns and Best Practices: A definitive guide to deploying, monitoring, and providing accessibility to ML models in production

Arrow left icon
Profile Icon Md Johirul Islam
Arrow right icon
₱1199.99 ₱1714.99
Full star icon Full star icon Full star icon Full star icon Half star icon 4.9 (13 Ratings)
eBook Dec 2022 336 pages 1st Edition
eBook
₱1199.99 ₱1714.99
Paperback
₱2142.99
Subscription
Free Trial
Arrow left icon
Profile Icon Md Johirul Islam
Arrow right icon
₱1199.99 ₱1714.99
Full star icon Full star icon Full star icon Full star icon Half star icon 4.9 (13 Ratings)
eBook Dec 2022 336 pages 1st Edition
eBook
₱1199.99 ₱1714.99
Paperback
₱2142.99
Subscription
Free Trial
eBook
₱1199.99 ₱1714.99
Paperback
₱2142.99
Subscription
Free Trial

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
Table of content icon View table of contents Preview book icon Preview Book

Machine Learning Model Serving Patterns and Best Practices

Introducing Model Serving

While machine learning (ML) surprises us every day with new, stunning ideas and demos, a burning question remains: how can we make the model available to our users? Often, we see demos of models on different blogs, books, YouTube videos, and so on, and we remain hungry to use the models ourselves. This is where model serving comes into the picture. Model serving is how we make our models available for use.

In this chapter, we will learn the definition of model serving, the importance of model serving, the challenges that make model serving difficult, and how people currently serve models, and see some of the available tools used for model serving.

By the end of this chapter, we will understand what model serving is, why model serving is needed, what makes it different from traditional web serving, and how people currently deploy/serve models.

In this chapter, we are going to cover the following main topics:

  • What is serving?
  • What are models?
  • What is model serving?
  • Understanding the importance of model serving
  • Challenges of serving models
  • Using existing tools to serve models

Technical requirements

This chapter does not require you to follow along with any hands-on exercises. However, there are some examples used from the BentoML official site: https://docs.bentoml.org/en/latest/tutorial.html.

If you want to try those examples on your local machine, please feel free to install a local version of BentoML following the simple installation instructions here: https://docs.bentoml.org/en/latest/installation.html.

Basically, you need to install BentoML like other Python packages using the following command:

 pip install bentoml

Feel free to follow the quick get-started link to understand the steps involved in model serving, which are highlighted in a later section in this chapter.

What is serving?

Serving is an important step for ensuring the business impact of the applications when we develop the life cycle of application development. The application we have developed needs to be available to the user so that they can use it. For example, let’s say we have developed a game. After the development, if the game just stays on the developer’s machine, then it is not going to be of any use to the users. So, the developer needs to bring the game to the users by serving it through a serving platform such as Apple Store, Google Play Store, and web servers.

So, serving can be seen as a mechanism to distribute our applications/services to end users. The end users can be different based on the applications/services we develop. Serving creates a bridge of communication between the two parties: the developer and the users. This bridge is vital for the business success of our application. If we don’t have people using our service, then we are not gaining any business value or impact from the applications we’ve developed. That’s what we have seen in the past when big corporate companies’ servers go down for some time: they incur a huge amount of loss. Facebook (Meta) lost ~65 million US dollars due to its outage for some hours in October 2021, as per Forbes: https://www.forbes.com/sites/abrambrown/2021/10/05/facebook-outage-lost-revenue/?sh=c1d7d03231ad.

The development-to-serving process usually forms the life cycle of the service or application.

For example, let’s consider the life cycle of web application development in Figure 1.1.

Figure 1.1 – Web development life cycle

Figure 1.1 – Web development life cycle

The developer develops the website. Then, the website is served using a web server. Only after that are the users able to use the website. The cycle can continue through collecting feedback from users, improving the website, and serving again on the web server.

Now we know what serving is, let’s look at what we are actually serving.

What are models?

There are a lot of definitions of models from the perspective of various domains. When we define a model or use the term model in this book, we will consider it in the context of ML. A model in ML can be seen as a function that has been fine-tuned through training, using some well-engineered data so that the function can recognize and distinguish patterns in unseen data.

Depending on the problem and business goal, a different model can be used, for example, a linear regression model, a logistic regression model, a naive Bayes model, or a decision tree model. These models’ underlying logical representations are different from each other. However, we use the generic term model and the problem domain and name of the ML algorithm to give us a clear picture of what the model is, how it was trained, and how the model is represented. For example, if we are told that the model is for linear regression, then we know that it was trained by minimizing a cost function iteratively using the training data, and it can be saved by storing the regression parameters’ coefficients and intercepts. Similarly, other models will have different algorithms for training and storing. For a deep learning model, we might have to use forward propagation and backward propagation for training, and for storing we might have to store the weights and biases of all the layers.

The trained model can be stored in different formats to load later for serving and inference. Some popular formats in which to save a model are as follows:

  • ONNX
  • YAML
  • Protobuf
  • Pickle
  • JSON
  • H5
  • TFJS
  • Joblib

However, model-serving tools usually require the models to be saved in a particular format. So, they provide a function to save the model in its desired format. There are also tools and libraries to convert models from one format to another. For example, in Figure 1.2, we see that an AlexNet model that is pre-trained in PyTorch is loaded and exported to ONNX format in a file named alexnet.onnx.

PyTorch files

It’s worth knowing that PyTorch saves the model using the Python pickle (https://docs.python.org/3/library/pickle.html) library. For further reading on PyTorch strategies for saving and loading models, please check out their official documentation: https://pytorch.org/tutorials/beginner/saving_loading_models.html.

Figure 1.2 – Example code converting a PyTorch pre-trained AlexNet model to ONNX format

Figure 1.2 – Example code converting a PyTorch pre-trained AlexNet model to ONNX format

Note

Figure 1.2 is an example from the PyTorch official website: https://pytorch.org/docs/stable/onnx.html#example-alexnet-from-pytorch-to-onnx.

Now we should have a good idea about models and how each model is represented and stored. The following section will introduce us to model serving.

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Learn best practices about bringing your models to production
  • Explore the tools available for serving ML models and the differences between them
  • Understand state-of-the-art monitoring approaches for model serving implementations

Description

Serving patterns enable data science and ML teams to bring their models to production. Most ML models are not deployed for consumers, so ML engineers need to know the critical steps for how to serve an ML model. This book will cover the whole process, from the basic concepts like stateful and stateless serving to the advantages and challenges of each. Batch, real-time, and continuous model serving techniques will also be covered in detail. Later chapters will give detailed examples of keyed prediction techniques and ensemble patterns. Valuable associated technologies like TensorFlow severing, BentoML, and RayServe will also be discussed, making sure that you have a good understanding of the most important methods and techniques in model serving. Later, you’ll cover topics such as monitoring and performance optimization, as well as strategies for managing model drift and handling updates and versioning. The book will provide practical guidance and best practices for ensuring that your model serving pipeline is robust, scalable, and reliable. Additionally, this book will explore the use of cloud-based platforms and services for model serving using AWS SageMaker with the help of detailed examples. By the end of this book, you'll be able to save and serve your model using state-of-the-art techniques.

Who is this book for?

This book is for machine learning engineers and data scientists who want to bring their models into production. Those who are familiar with machine learning and have experience of using machine learning techniques but are looking for options and strategies to bring their models to production will find great value in this book. Working knowledge of Python programming is a must to get started.

What you will learn

  • Explore specific patterns in model serving that are crucial for every data science professional
  • Understand how to serve machine learning models using different techniques
  • Discover the various approaches to stateless serving
  • Implement advanced techniques for batch and streaming model serving
  • Get to grips with the fundamental concepts in continued model evaluation
  • Serve machine learning models using a fully managed AWS Sagemaker cloud solution

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Dec 30, 2022
Length: 336 pages
Edition : 1st
Language : English
ISBN-13 : 9781803242538
Category :
Languages :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning

Product Details

Publication date : Dec 30, 2022
Length: 336 pages
Edition : 1st
Language : English
ISBN-13 : 9781803242538
Category :
Languages :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just ₱260 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just ₱260 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 6,940.97
Applied Machine Learning and High-Performance Computing on AWS
₱2398.99
Machine Learning Model Serving Patterns and Best Practices
₱2142.99
Machine Learning Security Principles
₱2398.99
Total 6,940.97 Stars icon

Table of Contents

21 Chapters
Part 1:Introduction to Model Serving Chevron down icon Chevron up icon
Chapter 1: Introducing Model Serving Chevron down icon Chevron up icon
Chapter 2: Introducing Model Serving Patterns Chevron down icon Chevron up icon
Part 2:Patterns and Best Practices of Model Serving Chevron down icon Chevron up icon
Chapter 3: Stateless Model Serving Chevron down icon Chevron up icon
Chapter 4: Continuous Model Evaluation Chevron down icon Chevron up icon
Chapter 5: Keyed Prediction Chevron down icon Chevron up icon
Chapter 6: Batch Model Serving Chevron down icon Chevron up icon
Chapter 7: Online Learning Model Serving Chevron down icon Chevron up icon
Chapter 8: Two-Phase Model Serving Chevron down icon Chevron up icon
Chapter 9: Pipeline Pattern Model Serving Chevron down icon Chevron up icon
Chapter 10: Ensemble Model Serving Pattern Chevron down icon Chevron up icon
Chapter 11: Business Logic Pattern Chevron down icon Chevron up icon
Part 3:Introduction to Tools for Model Serving Chevron down icon Chevron up icon
Chapter 12: Exploring TensorFlow Serving Chevron down icon Chevron up icon
Chapter 13: Using Ray Serve Chevron down icon Chevron up icon
Chapter 14: Using BentoML Chevron down icon Chevron up icon
Part 4:Exploring Cloud Solutions Chevron down icon Chevron up icon
Chapter 15: Serving ML Models using a Fully Managed AWS Sagemaker Cloud Solution Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.9
(13 Ratings)
5 star 92.3%
4 star 7.7%
3 star 0%
2 star 0%
1 star 0%
Filter icon Filter
Top Reviews

Filter reviews by




MLEngineer Feb 11, 2023
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Machine Learning production models require serving. This can be overlooked because it is at a boundary between Data Science and Engineering. You can take responsibility for this gap by reading this book whether you are a Data Scientist or Software Engineer.I very much appreciated:- the quick layout of design patterns- the turning of design patterns -> Python serving code- the mention of user-friendly serving on cloud services: to ramp up an ML product I opine that one should use auto-scaling serving to deploy quickly with the assistance of a cloud providerIn the book, I paid close attention to the monitoring of ML systems patterns: this is how you quickly evolve an ML product.This is a great book about getting AI to work at production.
Amazon Verified review Amazon
H2N Jul 14, 2023
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Delving into the process of serving machine learning models in production, this book offers a comprehensive and informative guide. It covers a diverse array of topics, ranging from foundational principles to advanced concepts like ensemble modeling and cloud-based solutions. Notably, the book excels in highlighting patterns commonly used in model serving, providing detailed explanations to aid readers in selecting the most suitable approach for their needs.
Amazon Verified review Amazon
C. G Mar 17, 2023
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I recently finished reading "Machine Learning Model Serving Patterns and Best Practices" by Md Johirul Islam.This book is well-structured, easy to follow, and provides practical examples and code snippets to help readers understand the concepts discussed. It also provides a good perspective on the lay of the land in the field of model serving, making it a valuable resource for data scientists, machine learning engineers, and anyone interested in the field.One of the things I loved about this book is it provides a comprehensive overview of the various model serving patterns and best practices in the field of machine learning. It covers a wide range of topics, including batch, online, pipeline, and ensemble model serving patterns, as well as different model serving stacks like Ray Serve and BentoML.However, it is worth noting that the content on managed cloud serving solutions is limited, and the coverage of SageMaker is relatively light. This may be a limitation for readers who are looking for a more detailed view of the capabilities of these solutions. It would be great to see more content on managed cloud serving solutions, given the increasing adoption of cloud-based solutions among customers who are looking to eliminate undifferentiated heavy lifting.Overall, "Machine Learning Model Serving Patterns and Best Practices" by Md Johirul Islam is an informative and well-written book. I would recommend it to anyone looking to deepen their understanding of the field. If the author is reading this review, I would encourage them to consider incorporating more content on managed cloud serving solutions in future editions, and happy to collaborate and provide more details.
Amazon Verified review Amazon
. Sep 27, 2023
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Use cases for various concepts are well explained:- stateful function (distributed, db, online shopping)- keyed prediction (concurrent predictions)- batch model serving (recommendation, sentiment)- two phase model serving (edge device vs server)Tools for serving ML models are well demonstrated with code for:tensorflow serving, BentoML, Ray Serve.
Amazon Verified review Amazon
HB Feb 12, 2023
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book is ideal for ML engineers and data scientists who want to bring their models into production and have a working knowledge of Python programming.The Github repository provided by the publisher is a great resource, with organized code and helpful examples.Overall, a highly recommended resource for anyone looking to learn more about ML model serving.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.