Introduction

Machine learning is the hottest thing in software engineering today. There are a lot of publications on machine learning appearing daily, and new machine learning products are appearing all the time. Amazon, Microsoft, Google, IBM, and others have introduced machine learning as managed cloud offerings.

However, one of the areas of machine learning that is not getting enough attention is model serving—how to serve the models that have been trained using machine learning.

The complexity of this problem comes from the fact that typically model training and model serving are responsibilities of two different groups in the enterprise who have different functions, concerns, and tools. As a result, the transition between these two activities is often nontrivial. In addition, as new machine learning tools appear, it often forces developers to create new model serving frameworks compatible with the new tooling.

This book introduces a slightly different approach to model serving based on the introduction of standardized document-based intermediate representation of the trained machine learning models and using such representations for serving in a stream-processing context. It proposes an overall architecture implementing controlled streams of both data and models that enables not only the serving of models in real time, as part of processing of the input streams, but also enables updating models without restarting existing applications.

Who This Book Is For

This book is intended for people who are interested in approaches to real-time serving of machine learning models supporting real-time model updates. It describes step-by-step options for exporting models, what exactly to export, and how to use these models for real-time serving.

The book also is intended for people who are trying to implement such solutions using modern stream processing engines and frameworks such as Apache Flink, Apache Spark streaming, Apache Beam, Apache Kafka streams, and Akka streams. It provides a set of working examples of usage of these technologies for model serving implementation.

Why Is Model Serving Difficult?

When it comes to machine learning implementations, organizations typically employ two very different groups of people: data scientists, who are typically responsible for the creation and training models, and software engineers, who concentrate on model scoring. These two groups typically use completely different tools. Data scientists work with R, Python, notebooks, and so on, whereas software engineers typically use Java, Scala, Go, and so forth. Their activities are driven by different concerns: data scientists need to cope with the amount of data, data cleaning issues, model design and comparison, and so on; software engineers are concerned with production issues such as performance, maintainability, monitoring, scalability, and failover.

These differences are currently fairly well understood and result in many “proprietary” model scoring solutions, for example, Tensorflow model serving and Spark-based model serving. Additionally all of the managed machine learning implementations (Amazon, Microsoft, Google, IBM, etc.) provide model serving capabilities.

Tools Proliferation Makes Things Worse

In his recent talk, Ted Dunning describes the fact that with multiple tools available to data scientists, they tend to use different tools to solve different problems (because every tool has its own sweet spot and the number of tools grows daily), and, as a result, they are not very keen on tools standardization. This creates a problem for software engineers trying to use “proprietary” model serving tools supporting specific machine learning technologies. As data scientists evaluate and introduce new technologies for machine learning, software engineers are forced to introduce new software packages supporting model scoring for these additional technologies.

One of the approaches to deal with these problems is the introduction of an API gateway on top of the proprietary systems. Although this hides the disparity of the backend systems from the consumers behind the unified APIs, for model serving it still requires installation and maintenance of the actual model serving implementations.

Model Standardization to the Rescue

To overcome these complexities, the Data Mining Group has introduced two model representation standards: Predictive Model Markup Language (PMML) and Portable Format for Analytics (PFA)

The Data Mining Group Defines PMML as:

is an XML-based language that provides a way for applications to define statistical and data-mining models as well as to share models between PMML-compliant applications.

PMML provides applications a vendor-independent method of defining models so that proprietary issues and incompatibilities are no longer a barrier to the exchange of models between applications. It allows users to develop models within one vendor’s application, and use other vendors’ applications to visualize, analyze, evaluate or otherwise use the models. Previously, this was very difficult, but with PMML, the exchange of models between compliant applications is now straightforward. Because PMML is an XML-based standard, the specification comes in the form of an XML Schema.

The Data Mining Group describes PFA as

an emerging standard for statistical models and data transformation engines. PFA combines the ease of portability across systems with algorithmic flexibility: models, pre-processing, and post processing are all functions that can be arbitrarily composed, chained, or built into complex workflows. PFA may be as simple as a raw data transformation or as sophisticated as a suite of concurrent data mining models, all described as a JSON or YAML configuration file.

Another de facto standard in machine learning today is TensorFlow--an open-source software library for Machine Intelligence. Tensorflow can be defined as follows:

At a high level, TensorFlow is a Python library that allows users to express arbitrary computation as a graph of data flows. Nodes in this graph represent mathematical operations, whereas edges represent data that is communicated from one node to another. Data in TensorFlow are represented as tensors, which are multidimensional arrays.

TensorFlow was released by Google in 2015 to make it easier for developers to design, build, and train deep learning models, and since then, it has become one of the most used software libraries for machine learning. You also can use TensorFlow as a backend for some of the other popular machine learning libraries, for example, Keras. TensorFlow allows for the exporting of trained models in protocol buffer formats (both text and binary) that you can use for transferring models between machine learning and model serving. In an attempt to make TensorFlow more Java friendly, TensorFlow Java APIs were released in 2017, which enable scoring TensorFlow models using any Java Virtual Machine (JVM)–based language.

All of the aforementioned model export approaches are designed for platform-neutral descriptions of the models that need to be served. Introduction of these model export approaches led to the creation of several software products dedicated to “generic” model serving, for example, Openscoring and Open Data Group.

Another result of this standardization is the creation of open source projects, building generic “evaluators” based on these formats. JPMML and Hadrian are two examples that are being adopted more and more for building model-serving implementations, such as in these example projects: ING, R implementation, SparkML support, Flink support, and so on.

Additionally, because models are represented not as code but as data, usage of such a model description allows manipulation of models as a special type of data that is fundamental for our proposed solution.

Why I Wrote This Book

This book describes the problem of serving models resulting from machine learning in streaming applications. It shows how to export trained models in TensorFlow and PMML formats and use them for model serving, using several popular streaming engines and frameworks.

I deliberately do not favor any specific solution. Instead, I outline options, with some pros and cons. The choice of the best solution depends greatly on the concrete use case that you are trying to solve, more precisely:

  • The number of models to serve. Increasing the number of models will skew your preference toward the use of the key-based approach, like Flink key-based joins.

  • The amount of data to be scored by each model. Increasing the volume of data suggests partition-based approaches, like Spark or Flink partition-based joins.

  • The number of models that will be used to score each data item. You’ll need a solution that easily supports the use of composite keys to match each data item to multiple models.

  • The complexity of the calculations during scoring and additional processing of scored results. As the complexity grows, so will the load grow, which suggests using streaming engines rather than streaming libraries.

  • Scalability requirements. If they are low, using streaming libraries like Akka and Kafka Streams can be a better option due to their relative simplicity compared to engines like Spark and Flink, their ease of adoption, and the relative ease of maintaining these applications.

  • Your organization’s existing expertise, which can suggest making choices that might be suboptimal, all other considerations being equal, but are more comfortable for your organization.

I hope this book provides the guidance you need for implementing your own solution.

How This Book Is Organized

The book is organized as follows:

  • Chapter 1 describes the overall proposed architecture.

  • Chapter 2 talks about exporting models using examples of TensorFlow and PMML.

  • Chapter 3 describes common components used in all solutions.

  • Chapter 4 through Chapter 8 describe model serving implementations for different stream processing engines and frameworks.

  • Chapter 9 covers monitoring approaches for model serving implementations.

A Note About Code

The book contains a lot of code snippets. You can find the complete code in the following Git repositories:

Acknowledgments

I would like to thank the people who helped me in writing this book and making it better, especially:

  • Konrad Malawski, for his help with Akka implementation and overall review

  • Dean Wampler, who did a thorough review of the overall book and provided many useful suggestions

  • Trevor Grant, for conducting a technical review

  • The entire Lightbend Fast Data team, especially Stavros Kontopoulos, Debasish Ghosh, and Jim Powers, for many useful comments and suggestions about the original text and code

Get Serving Machine Learning Models now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.