Skip to content

Commit b90dd63

Browse files
Merge pull request #212924 from sdgilley/sdg-migration
change terminology first set
2 parents c1d72d8 + 0a35d9d commit b90dd63

7 files changed

+22
-22
lines changed

articles/machine-learning/migrate-to-v2-assets-data.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: 'Migrate data management from SDK v1 to v2'
2+
title: 'Upgrade data management to SDK v2'
33
titleSuffix: Azure Machine Learning
4-
description: Migrate data management from v1 to v2 of Azure Machine Learning SDK
4+
description: Upgrade data management from v1 to v2 of Azure Machine Learning SDK
55
services: machine-learning
66
ms.service: machine-learning
77
ms.subservice: mldata
@@ -13,7 +13,7 @@ ms.reviewer: sgilley
1313
ms.custom: migration
1414
---
1515

16-
# Migrate data management from SDK v1 to v2
16+
# Upgrade data management to SDK v2
1717

1818
In V1, an AzureML dataset can either be a `Filedataset` or a `Tabulardataset`.
1919
In V2, an AzureML data asset can be a `uri_folder`, `uri_file` or `mltable`.

articles/machine-learning/migrate-to-v2-assets-model.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Migrate model management from SDK v1 to SDK v2
2+
title: Upgrade model management to SDK v2
33
titleSuffix: Azure Machine Learning
4-
description: Migrate model management from v1 to v2 of Azure Machine Learning SDK
4+
description: Upgrade model management from v1 to v2 of Azure Machine Learning SDK
55
services: machine-learning
66
ms.service: machine-learning
77
ms.subservice: core
@@ -13,7 +13,7 @@ ms.reviewer: sgilley
1313
ms.custom: migration
1414
---
1515

16-
# Migrate model management from SDK v1 to SDK v2
16+
# Upgrade model management to SDK v2
1717

1818
This article gives a comparison of scenario(s) in SDK v1 and SDK v2.
1919

articles/machine-learning/migrate-to-v2-command-job.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: 'Migrate script run from SDK v1 to SDK v2'
2+
title: 'Upgrade script run to SDK v2'
33
titleSuffix: Azure Machine Learning
4-
description: Migrate how to run a script from SDK v1 to SDK v2
4+
description: Upgrade how to run a script from SDK v1 to SDK v2
55
services: machine-learning
66
ms.service: machine-learning
77
ms.subservice: core
@@ -13,13 +13,13 @@ ms.reviewer: sgilley
1313
ms.custom: migration
1414
---
1515

16-
# Migrate script run from SDK v1 to SDK v2
16+
# Upgrade script run to SDK v2
1717

1818
In SDK v2, "experiments" and "runs" are consolidated into jobs.
1919

2020
A job has a type. Most jobs are command jobs that run a `command`, like `python main.py`. What runs in a job is agnostic to any programming language, so you can run `bash` scripts, invoke `python` interpreters, run a bunch of `curl` commands, or anything else.
2121

22-
To migrate, you'll need to change your code for submitting jobs to SDK v2. What you run _within_ the job doesn't need to be migrated to SDK v2. However, it's recommended to remove any code specific to Azure ML from your model training scripts. This separation allows for an easier transition between local and cloud and is considered best practice for mature MLOps. In practice, this means removing `azureml.*` lines of code. Model logging and tracking code should be replaced with MLflow. For more details, see [how to use MLflow in v2](how-to-use-mlflow-cli-runs.md).
22+
To upgrade, you'll need to change your code for submitting jobs to SDK v2. What you run _within_ the job doesn't need to be migrated to SDK v2. However, it's recommended to remove any code specific to Azure ML from your model training scripts. This separation allows for an easier transition between local and cloud and is considered best practice for mature MLOps. In practice, this means removing `azureml.*` lines of code. Model logging and tracking code should be replaced with MLflow. For more details, see [how to use MLflow in v2](how-to-use-mlflow-cli-runs.md).
2323

2424
This article gives a comparison of scenario(s) in SDK v1 and SDK v2.
2525

articles/machine-learning/migrate-to-v2-deploy-endpoints.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Migrate endpoints from SDK v1 to SDK v2
2+
title: Upgrade deployment endpoints to SDK v2
33
titleSuffix: Azure Machine Learning
4-
description: Migrate deployment endpoints from v1 to v2 of Azure Machine Learning SDK
4+
description: Upgrade deployment endpoints from v1 to v2 of Azure Machine Learning SDK
55
services: machine-learning
66
ms.service: machine-learning
77
ms.subservice: core
@@ -13,7 +13,7 @@ ms.reviewer: sgilley
1313
ms.custom: migration
1414
---
1515

16-
# Migrate deployment endpoints from SDK v1 to SDK v2
16+
# Upgrade deployment endpoints to SDK v2
1717

1818
We newly introduced [online endpoints](concept-endpoints.md) and batch endpoints as v2 concepts. There are several deployment funnels such as managed online endpoints, [kubernetes online endpoints](how-to-attach-kubernetes-anywhere.md) (including AKS and Arch-enabled Kubernetes) in v2, and ACI and AKS webservices in v1. In this article, we'll focus on the comparison of deploying to ACI webservices (v1) and managed online endpoints (v2).
1919

articles/machine-learning/migrate-to-v2-execution-automl.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Migrate AutoML from SDK v1 to SDK v2
2+
title: Upgrade AutoML to SDK v2
33
titleSuffix: Azure Machine Learning
44
description: Migrate AutoML from v1 to v2 of Azure Machine Learning SDK
55
services: machine-learning
@@ -13,7 +13,7 @@ ms.reviewer: sgilley
1313
ms.custom: migration
1414
---
1515

16-
# Migrate AutoML from SDK v1 to SDK v2
16+
# Upgrade AutoML to SDK v2
1717

1818
In SDK v2, "experiments" and "runs" are consolidated into jobs.
1919

articles/machine-learning/migrate-to-v2-execution-hyperdrive.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: 'Migrate from v1 to v2: '
2+
title: Upgrade hyperparameter tuning to SDK v2
33
titleSuffix: Azure Machine Learning
4-
description: Migrate from v1 to v2 of Azure Machine Learning SDK
4+
description: Upgrade hyperparameter tuning from v1 to v2 of Azure Machine Learning SDK
55
services: machine-learning
66
ms.service: machine-learning
77
ms.subservice: core
@@ -13,7 +13,7 @@ ms.reviewer: sgilley
1313
ms.custom: migration
1414
---
1515

16-
# Migrate hyperparameter tuning from SDK v1 to SDK v2
16+
# Upgrade hyperparameter tuning to SDK v2
1717

1818
In SDK v2, tuning hyperparameters are consolidated into jobs.
1919

articles/machine-learning/migrate-to-v2-execution-parallel-run-step.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Migrate parallel run step from SDK v1 to SDK v2
2+
title: Upgrade parallel run step to SDK v2
33
titleSuffix: Azure Machine Learning
4-
description: Migrate parallel run step from v1 to v2 of Azure Machine Learning SDK
4+
description: Upgrade parallel run step from v1 to v2 of Azure Machine Learning SDK
55
services: machine-learning
66
ms.service: machine-learning
77
ms.subservice: core
@@ -13,15 +13,15 @@ ms.reviewer: sgilley
1313
ms.custom: migration
1414
---
1515

16-
# Migrate parallel run step from SDK v1 to SDK v2
16+
# Upgrade parallel run step to SDK v2
1717

1818
In SDK v2, "Parallel run step" is consolidated into job concept as `parallel job`. Parallel job keeps the same target to empower users to accelerate their job execution by distributing repeated tasks on powerful multi-nodes compute clusters. On top of parallel run step, v2 parallel job provides extra benefits:
1919

2020
- Flexible interface, which allows user to define multiple custom inputs and outputs for your parallel job. You can connect them with other steps to consume or manage their content in your entry script
2121
- Simplify input schema, which replaces `Dataset` as input by using v2 `data asset` concept. You can easily use your local files or blob directory URI as the inputs to parallel job.
2222
- More powerful features are under developed in v2 parallel job only. For example, resume the failed/canceled parallel job to continue process the failed or unprocessed mini-batches by reusing the successful result to save duplicate effort.
2323

24-
To migrate your current sdk v1 parallel run step to v2, you'll need to
24+
To upgrade your current sdk v1 parallel run step to v2, you'll need to
2525

2626
- Use `parallel_run_function` to create parallel job by replacing `ParallelRunConfig` and `ParallelRunStep` in v1.
2727
- Migrate your v1 pipeline to v2. Then invoke your v2 parallel job as a step in your v2 pipeline. See [how to migrate pipeline from v1 to v2](migrate-to-v2-execution-pipeline.md) for the details about pipeline migration.

0 commit comments

Comments
 (0)