Architecting real-time scoring solutions
Real-time inferencing refers to scoring new data points as they arrive instead of on a time-based schedule. New data flows in, new predictions come out. While not as common as batch inferencing, real-time inferencing is used by companies in a number of scenarios such as credit card fraud detection, anomaly detection on the factory floor, and recommending products when you're online shopping.
In this section, you will learn how to architect a complete, end-to-end real-time scoring solution using Azure AutoML-trained models. You will also learn why, and in what situations, you should prioritize real-time scoring over batch scoring solutions.
Understanding the four-step real-time scoring process
Real-time scoring solutions follow a slightly different process than batch scoring solutions. There are only four steps. Like batch solutions, the process begins by training an ML model and registering it as you did in previous chapters....