Skip to content

Commit e39a2d8

Browse files
authored
Update tutorial-convert-ml-experiment-to-production.md
FYI @bjcmit
1 parent 5c0ac9e commit e39a2d8

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
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

0 commit comments

Comments
 (0)