Skip to content

Commit d19be79

Browse files
authored
Merge pull request #86105 from trevorbye/master
replacing tutorials
2 parents 31931fd + f6dee02 commit d19be79

9 files changed

+896
-2097
lines changed

.openpublishing.redirection.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26008,7 +26008,7 @@
2600826008
"source_path": "articles/security-center/security-center-enable-transparent-data-encryption.md",
2600926009
"redirect_url": "/azure/security-center/security-center-sql-service-recommendations",
2601026010
"redirect_document_id": false
26011-
},
26011+
},
2601226012
{
2601326013
"source_path": "articles/security-center/security-center-incident-response.md",
2601426014
"redirect_url": "/azure/security-center/tutorial-security-incident",
@@ -41475,6 +41475,11 @@
4147541475
"source_path": "articles/iot-accelerators/howto-opc-vault-deploy-scratch.md",
4147641476
"redirect_url": "/azure/iot-accelerators/howto-opc-vault-deploy",
4147741477
"redirect_document_id": false
41478+
},
41479+
{
41480+
"source_path": "articles/machine-learning/service/tutorial-data-prep.md",
41481+
"redirect_url": "/azure/machine-learning/service/tutorial-auto-train-models",
41482+
"redirect_document_id": false
4147841483
}
4147941484
]
4148041485
}

articles/machine-learning/service/how-to-load-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,4 +316,4 @@ dflow.to_pandas_dataframe().head()
316316

317317
## Next steps
318318

319-
* See the Azure Machine Learning Data Prep SDK [tutorial](tutorial-data-prep.md) for an example of solving a specific scenario
319+
* See the Azure Machine Learning Data Prep SDK [reference documentation](https://docs.microsoft.com/python/api/overview/azure/ml/intro?view=azure-ml-py#dataprep) for more detail.

articles/machine-learning/service/how-to-transform-data.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ms.custom: seodec18
1919
In this article, you learn different methods of transforming data using the `azureml-dataprep` package. The package offers functions that make it simple to add columns, filter out unwanted rows or columns, and impute missing values. See full reference documentation for the [azureml-dataprep package](https://aka.ms/data-prep-sdk).
2020

2121
> [!Important]
22-
> If you are building a new solution, try the [Azure Machine Learning Datasets](how-to-explore-prepare-data.md) (preview) to transform your data, snapshot data, and store versioned dataset definitions. Datasets is the next version of the data prep SDK, offering expanded functionality for managing datasets in AI solutions.
22+
> If you are building a new solution, try the [Azure Machine Learning Datasets](how-to-explore-prepare-data.md) (preview) to transform your data, snapshot data, and store versioned dataset definitions. Datasets is the next version of the data prep SDK, offering expanded functionality for managing datasets in AI solutions.
2323
> If you use the `azureml-dataprep` package to create a dataflow with your transformations instead of using the `azureml-datasets` package to create a dataset, you won't be able to use snapshots or versioned datasets later.
2424
2525
This how-to shows examples for the following tasks:
@@ -341,7 +341,7 @@ Use the expression builder `col`, specify the column name as a string argument `
341341

342342
In this example, `dflow.filter(col('Tip_amount') > 0)` returns a new data flow with the rows in which the value of `Tip_amount` is greater than 0.
343343

344-
> [!NOTE]
344+
> [!NOTE]
345345
> `Tip_amount` is first converted to numeric, which allows us to build an expression comparing it against other numeric values.
346346
347347
```python
@@ -513,4 +513,4 @@ dflow.head(2)
513513

514514
## Next steps
515515

516-
* See the Azure Machine Learning Data Prep SDK [tutorial](tutorial-data-prep.md) for an example of solving a specific scenario
516+
* See the Azure Machine Learning Data Prep SDK [reference documentation](https://docs.microsoft.com/python/api/overview/azure/ml/intro?view=azure-ml-py#dataprep) for more detail.

articles/machine-learning/service/overview-what-happened-to-workbench.md

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ ms.custom: seodec18
1414
---
1515
# What happened to Azure Machine Learning Workbench?
1616

17-
The Azure Machine Learning Workbench application and some other early features were deprecated and replaced in the September 2018 release to make way for an improved [architecture](concept-azure-machine-learning-architecture.md).
17+
The Azure Machine Learning Workbench application and some other early features were deprecated and replaced in the September 2018 release to make way for an improved [architecture](concept-azure-machine-learning-architecture.md).
1818

19-
To improve your experience, the release contains many significant updates prompted by customer feedback. The core functionality from experiment runs to model deployment hasn't changed. But now, you can use the robust <a href="https://aka.ms/aml-sdk" target="_blank">SDK</a> and the [Azure CLI](reference-azure-machine-learning-cli.md) to accomplish your machine learning tasks and pipelines.
19+
To improve your experience, the release contains many significant updates prompted by customer feedback. The core functionality from experiment runs to model deployment hasn't changed. But now, you can use the robust <a href="https://aka.ms/aml-sdk" target="_blank">SDK</a> and the [Azure CLI](reference-azure-machine-learning-cli.md) to accomplish your machine learning tasks and pipelines.
2020

2121
Most of the artifacts that were created in the earlier version of Azure Machine Learning service are stored in your own local or cloud storage. These artifacts won't ever disappear.
2222

@@ -42,13 +42,13 @@ Although there are new improved CLI and SDK clients in the current release, the
4242

4343
## Support timeline
4444

45-
On January 9th, 2019 support for Machine Learning Workbench, Azure Machine Learning Experimentation and Model Management accounts, and their associated SDK and CLI has ended.
45+
On January 9th, 2019 support for Machine Learning Workbench, Azure Machine Learning Experimentation and Model Management accounts, and their associated SDK and CLI has ended.
4646

4747
All the latest capabilities are available by using this <a href="https://aka.ms/aml-sdk" target="_blank">SDK</a>, the [CLI](reference-azure-machine-learning-cli.md), and the [portal](how-to-manage-workspace.md).
4848

4949
## What about run histories?
5050

51-
Older run histories are no longer accessible, how you can still see your runs in the latest version.
51+
Older run histories are no longer accessible, how you can still see your runs in the latest version.
5252

5353
Run histories are now called **experiments**. You can collect your model's experiments and explore them by using the SDK, the CLI, or the Azure portal.
5454

@@ -60,11 +60,9 @@ Start training your models and tracking the run histories using the new CLI and
6060

6161
## Can I still prep data?
6262

63-
Your pre-existing data preparation files aren't portable to the latest release because we don't have Machine Learning Workbench anymore. But you can still prepare any size data set for modeling.
63+
Your pre-existing data preparation files aren't portable to the latest release because we don't have Machine Learning Workbench anymore. But you can still prepare any size data set for modeling.
6464

65-
With data sets of any size, you can use the [data prep package for Azure Machine Learning](https://aka.ms/data-prep-sdk) to quickly prepare your data prior to modeling by writing Python code.
66-
67-
You can follow [this tutorial](tutorial-data-prep.md) to learn more about how to use Azure Machine Learning Data Prep SDK.
65+
With data sets of any size, you can use the [data prep package for Azure Machine Learning](https://aka.ms/data-prep-sdk) to quickly prepare your data prior to modeling by writing Python code.
6866

6967
## Will projects persist?
7068

@@ -80,15 +78,15 @@ run = exp.submit(source_directory=script_folder,
8078

8179
## What about my registered models and images?
8280

83-
The models that you registered in your old model registry must be migrated to your new workspace if you want to continue to use them. To migrate your models, download the models and re-register them in your new workspace.
81+
The models that you registered in your old model registry must be migrated to your new workspace if you want to continue to use them. To migrate your models, download the models and re-register them in your new workspace.
8482

8583
The images that you created in your old image registry cannot be directly migrated to the new workspace. In most cases, the model can be deployed without having to create an image. If needed, you can create an image for the model in the new workspace. For more information, see [Manage, register, deploy, and monitor machine learning models](concept-model-management-and-deployment.md).
8684

8785
## What about deployed web services?
8886

8987
Now that support for the old CLI has ended, you can no longer redeploy models or manage the web services you originally deployed with your Model Management account. However, those web services will continue to work for as long as Azure Container Service (ACS) is still supported.
9088

91-
In the latest version, models are deployed as web services to Azure Container Instances (ACI) or Azure Kubernetes Service (AKS) clusters. You can also deploy to FPGAs and to Azure IoT Edge.
89+
In the latest version, models are deployed as web services to Azure Container Instances (ACI) or Azure Kubernetes Service (AKS) clusters. You can also deploy to FPGAs and to Azure IoT Edge.
9290

9391
Learn more in these articles:
9492
+ [Where and how to deploy models](how-to-deploy-and-where.md)
@@ -112,10 +110,10 @@ The domain packages for computer vision, text analytics, and forecasting can't b
112110

113111
## Next steps
114112

115-
Learn about the [latest architecture for Azure Machine Learning service](concept-azure-machine-learning-architecture.md).
113+
Learn about the [latest architecture for Azure Machine Learning service](concept-azure-machine-learning-architecture.md).
116114

117115
For an overview of the service, read [What is Azure Machine Learning service?](overview-what-is-azure-ml.md).
118116

119117
Create your first experiment with the two-part tutorial to [setup environment and workspace](tutorial-1st-experiment-sdk-setup.md) and [train your first model](tutorial-1st-experiment-sdk-train.md)
120118

121-
For a more in-depth experience of this workflow, follow the [full-length tutorial](tutorial-train-models-with-aml.md) that contains detailed steps for training and deploying models with Azure Machine Learning service.
119+
For a more in-depth experience of this workflow, follow the [full-length tutorial](tutorial-train-models-with-aml.md) that contains detailed steps for training and deploying models with Azure Machine Learning service.

articles/machine-learning/service/overview-what-is-azure-ml.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,9 @@ You get credits to spend on Azure services. After they're used up, you can keep
103103
- [Create a Machine Learning service workspace](how-to-manage-workspace.md) to get started.
104104

105105
- Follow the full-length tutorials:
106+
+ [Create a workspace and train your first ML model](tutorial-1st-experiment-sdk-setup.md)
106107
+ [Train an image classification model with Azure Machine Learning service](tutorial-train-models-with-aml.md)
107-
+ [Prepare data and use automated machine learning to auto-train a regression model](tutorial-data-prep.md)
108+
108109

109110
- Learn about [machine learning pipelines](/azure/machine-learning/service/concept-ml-pipelines) to build, optimize, and manage your machine learning scenarios.
110111

articles/machine-learning/service/samples-notebooks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Example Jupyter notebooks
33
titleSuffix: Azure Machine Learning service
4-
description: Find and use example Jupyter notebooks to explore the Azure Machine Learning service Python SDK.
4+
description: Find and use example Jupyter notebooks to explore the Azure Machine Learning service Python SDK.
55
services: machine-learning
66
ms.service: machine-learning
77
ms.subservice: core
@@ -64,4 +64,4 @@ Explore the [sample notebooks](https://aka.ms/aml-notebooks) to discover what Az
6464

6565
- [Train and deploy an image classification model with MNIST](tutorial-train-models-with-aml.md)
6666

67-
- [Prepare data and use automated machine learning to train a regression model with the NYC taxi data set](tutorial-data-prep.md)
67+
- [Prepare data and use automated machine learning to train a regression model with the NYC taxi data set](tutorial-auto-train-models.md)

articles/machine-learning/service/toc.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
- name: What is Azure Machine Learning service?
77
displayName: AML, services, overview, introduction
88
href: overview-what-is-azure-ml.md
9-
- name: Architecture & terms
9+
- name: Architecture & terms
1010
displayName: architecture, concepts, definitions, glossary
1111
href: concept-azure-machine-learning-architecture.md
1212

@@ -29,10 +29,7 @@
2929
href: tutorial-deploy-models-with-aml.md
3030
- name: Regression (NYC Taxi data)
3131
items:
32-
- name: 1. Prepare data for modeling
33-
displayName: data prep
34-
href: tutorial-data-prep.md
35-
- name: 2. Auto-train an ML model
32+
- name: Auto-train an ML model
3633
displayName: automl, automated, auto ml,
3734
href: tutorial-auto-train-models.md
3835
- name: Visual interface
@@ -131,7 +128,7 @@
131128
href: how-to-configure-environment.md
132129
- name: Manage software environment
133130
displayName: pip, Conda
134-
href: how-to-use-environments.md
131+
href: how-to-use-environments.md
135132
- name: Enable logging
136133
displayName: troubleshoot, log, files, tracing
137134
href: how-to-enable-logging.md
@@ -211,7 +208,7 @@
211208
displayName: time series
212209
href: how-to-auto-train-forecast.md
213210
- name: Understand charts and metrics
214-
href: how-to-understand-automated-ml.md
211+
href: how-to-understand-automated-ml.md
215212
- name: Deploy & serve models
216213
items:
217214
- name: Where and how to deploy
@@ -231,7 +228,7 @@
231228
- name: Deploy to Notebook VMs
232229
href: how-to-deploy-local-container-notebook-vm.md
233230
- name: Use custom Docker image
234-
href: how-to-deploy-custom-docker-image.md
231+
href: how-to-deploy-custom-docker-image.md
235232
- name: Deploy existing models
236233
displayName: publish existing model
237234
href: how-to-deploy-existing-model.md

0 commit comments

Comments
 (0)