Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Engineering MLOps

You're reading from  Engineering MLOps

Product type Book
Published in Apr 2021
Publisher Packt
ISBN-13 9781800562882
Pages 370 pages
Edition 1st Edition
Languages
Author (1):
Emmanuel Raj Emmanuel Raj
Profile icon Emmanuel Raj

Table of Contents (18) Chapters

Preface Section 1: Framework for Building Machine Learning Models
Chapter 1: Fundamentals of an MLOps Workflow Chapter 2: Characterizing Your Machine Learning Problem Chapter 3: Code Meets Data Chapter 4: Machine Learning Pipelines Chapter 5: Model Evaluation and Packaging Section 2: Deploying Machine Learning Models at Scale
Chapter 6: Key Principles for Deploying Your ML System Chapter 7: Building Robust CI/CD Pipelines Chapter 8: APIs and Microservice Management Chapter 9: Testing and Securing Your ML Solution Chapter 10: Essentials of Production Release Section 3: Monitoring Machine Learning Models in Production
Chapter 11: Key Principles for Monitoring Your ML System Chapter 12: Model Serving and Monitoring Chapter 13: Governing the ML System for Continual Learning Other Books You May Enjoy

Registering models and production artifacts

In this step, the model that has been serialized or containerized in the previous step is registered and stored in the model registry. A registered model is compiled as a logical container for one or more files that function as a model. For instance, a model made up of multiple files can be registered as a single model in the model registry. By downloading the registered model, all the files can be received. The registered model can be deployed and used for inference on demand.

Let's register our serialized models in the previous section by using the model .register() function from the Azure ML SDK. By using this function, the serialized ONNX file is registered to the workspace for further use and deploying to the test and production environment. Let's register the serialized SVM classifier model (svc.onnx):

# Register Model on AzureML WS
model = Model.register (model_path = './outputs/svc.onnx', # this points to...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}