Skip to content

Commit 0cc4713

Browse files
authored
Merge pull request #113207 from MicrosoftDocs/j-martens-patch-18
Update tutorial-pipeline-batch-scoring-classification.md
2 parents 6aac17b + e39a2d8 commit 0cc4713

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

articles/machine-learning/tutorial-convert-ml-experiment-to-production.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
---
2-
title: Convert machine learning experiment code to production code
2+
title: Convert notebook code into Python scripts
33
titleSuffix: Azure Machine Learning
4-
description: Learn how to convert machine learning experimental code to production code using the MLOpsPython code template.
4+
description: Turn your machine learning experimental notebooks into production-ready code using the MLOpsPython code template. You can then test, deploy, and automate that code.
55
author: bjcmit
66
ms.author: brysmith
77
ms.service: machine-learning
88
ms.topic: tutorial
9-
ms.date: 03/13/2020
9+
ms.date: 04/30/2020
1010
---
1111

12-
# Tutorial: Convert ML experimental code to production code
12+
# Tutorial: Convert ML experiments to production Python code
13+
14+
In this tutorial, you learn how to convert Juptyer notebooks into Python scripts to make it testing and automation friendly using the MLOpsPython code template and Azure Machine Learning. Typically, this process is used to take experimentation / training code from a Juptyer notebook and convert it into Python scripts. Those scripts can then be used testing and CI/CD automation in your production environment.
1315

1416
A machine learning project requires experimentation where hypotheses are tested with agile tools like Jupyter Notebook using real datasets. Once the model is ready for production, the model code should be placed in a production code repository. In some cases, the model code must be converted to Python scripts to be placed in the production code repository. This tutorial covers a recommended approach on how to export experimentation code to Python scripts.
1517

articles/machine-learning/tutorial-pipeline-batch-scoring-classification.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.date: 03/11/2020
1616

1717
[!INCLUDE [applies-to-skus](../../includes/aml-applies-to-basic-enterprise-sku.md)]
1818

19-
Learn how to build a pipeline in Azure Machine Learning to run a batch scoring job. Machine learning pipelines optimize your workflow with speed, portability, and reuse, so you can focus on machine learning instead of infrastructure and automation. After you build and publish a pipeline, you configure a REST endpoint that you can use to trigger the pipeline from any HTTP library on any platform.
19+
In this advanced tutorial, you learn how to build a pipeline in Azure Machine Learning to run a batch scoring job. Machine learning pipelines optimize your workflow with speed, portability, and reuse, so you can focus on machine learning instead of infrastructure and automation. After you build and publish a pipeline, you configure a REST endpoint that you can use to trigger the pipeline from any HTTP library on any platform.
2020

2121
The example uses a pretrained [Inception-V3](https://arxiv.org/abs/1512.00567) convolutional neural network model implemented in Tensorflow to classify unlabeled images. [Learn more about machine learning pipelines](concept-ml-pipelines.md).
2222

0 commit comments

Comments
 (0)