You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/machine-learning/service/how-to-deploy-inferencing-gpus.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Deploy a model for inference with GPU
3
-
titleSuffix: Azure Machine Learning service
4
-
description: This article teaches you how to use the Azure Machine Learning service to deploy a GPU-enabled Tensorflow deep learning model as a web service.service and score inference requests.
3
+
titleSuffix: Azure Machine Learning
4
+
description: This article teaches you how to use Azure Machine Learning to deploy a GPU-enabled Tensorflow deep learning model as a web service.service and score inference requests.
5
5
services: machine-learning
6
6
ms.service: machine-learning
7
7
ms.subservice: core
@@ -14,7 +14,7 @@ ms.date: 07/24/2019
14
14
15
15
# Deploy a deep learning model for inference with GPU
16
16
17
-
This article teaches you how to use the Azure Machine Learning service to deploy a GPU-enabled model as a web service. The information in this article is based on deploying a model on Azure Kubernetes Service (AKS). The AKS cluster provides a GPU resource that is used by the model for inference.
17
+
This article teaches you how to use Azure Machine Learning to deploy a GPU-enabled model as a web service. The information in this article is based on deploying a model on Azure Kubernetes Service (AKS). The AKS cluster provides a GPU resource that is used by the model for inference.
18
18
19
19
Inference, or model scoring, is the phase where the deployed model is used to make predictions. Using GPUs instead of CPUs offers performance advantages on highly parallelizable computation.
20
20
@@ -29,7 +29,7 @@ Inference, or model scoring, is the phase where the deployed model is used to ma
29
29
30
30
## Prerequisites
31
31
32
-
* An Azure Machine Learning service workspace. For more information, see [Create an Azure Machine Learning service workspace](how-to-manage-workspace.md).
32
+
* An Azure Machine Learning workspace. For more information, see [Create an Azure Machine Learning workspace](how-to-manage-workspace.md).
33
33
34
34
* A Python development environment with the Azure Machine Learning SDK installed. For more information, see [Azure Machine Learning SDK](https://docs.microsoft.com/python/api/overview/azure/ml/install?view=azure-ml-py).
35
35
@@ -46,7 +46,7 @@ Inference, or model scoring, is the phase where the deployed model is used to ma
46
46
To connect to an existing workspace, use the following code:
47
47
48
48
> [!IMPORTANT]
49
-
> This code snippet expects the workspace configuration to be saved in the current directory or its parent. For more information on creating a workspace, see [Create and manage Azure Machine Learning service workspaces](how-to-manage-workspace.md). For more information on saving the configuration to file, see [Create a workspace configuration file](how-to-configure-environment.md#workspace).
49
+
> This code snippet expects the workspace configuration to be saved in the current directory or its parent. For more information on creating a workspace, see [Create and manage Azure Machine Learning workspaces](how-to-manage-workspace.md). For more information on saving the configuration to file, see [Create a workspace configuration file](how-to-configure-environment.md#workspace).
50
50
51
51
```python
52
52
from azureml.core import Workspace
@@ -88,7 +88,7 @@ except ComputeTargetException:
88
88
> [!IMPORTANT]
89
89
> Azure will bill you as long as the AKS cluster exists. Make sure to delete your AKS cluster when you're done with it.
90
90
91
-
For more information on using AKS with Azure Machine Learning service, see [How to deploy to Azure Kubernetes Service](how-to-deploy-azure-kubernetes-service.md).
91
+
For more information on using AKS with Azure Machine Learning, see [How to deploy to Azure Kubernetes Service](how-to-deploy-azure-kubernetes-service.md).
Copy file name to clipboardExpand all lines: articles/machine-learning/service/how-to-deploy-local-container-notebook-vm.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: How to deploy models to Notebook VMs
3
-
titleSuffix: Azure Machine Learning service
4
-
description: 'Learn how to deploy your Azure Machine Learning service models as a web service using Notebook VMs.'
3
+
titleSuffix: Azure Machine Learning
4
+
description: 'Learn how to deploy your Azure Machine Learning models as a web service using Notebook VMs.'
5
5
services: machine-learning
6
6
ms.service: machine-learning
7
7
ms.subservice: core
@@ -14,17 +14,17 @@ ms.date: 08/08/2019
14
14
15
15
# Deploy a model to Notebook VMs
16
16
17
-
Learn how to use the Azure Machine Learning service to deploy a model as a web service on your Notebook VM. Use Notebook VMs if one of the following conditions is true:
17
+
Learn how to use Azure Machine Learning to deploy a model as a web service on your Notebook VM. Use Notebook VMs if one of the following conditions is true:
18
18
19
19
- You need to quickly deploy and validate your model.
20
20
- You are testing a model that is under development.
21
21
22
22
> [!TIP]
23
-
> Deploying a model from a Jupyter Notebook on a notebook VM, to a web service on the same VM is a _local deployment_. In this case, the 'local' computer is the notebook VM. For more information on deployments, see [Deploy models with Azure Machine Learning service](how-to-deploy-and-where.md).
23
+
> Deploying a model from a Jupyter Notebook on a notebook VM, to a web service on the same VM is a _local deployment_. In this case, the 'local' computer is the notebook VM. For more information on deployments, see [Deploy models with Azure Machine Learning](how-to-deploy-and-where.md).
24
24
25
25
## Prerequisites
26
26
27
-
- An Azure Machine Learning service workspace with a notebook VM running. For more information, see [Setup environment and workspace](tutorial-1st-experiment-sdk-setup.md).
27
+
- An Azure Machine Learning workspace with a notebook VM running. For more information, see [Setup environment and workspace](tutorial-1st-experiment-sdk-setup.md).
Copy file name to clipboardExpand all lines: articles/machine-learning/service/how-to-enable-app-insights.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Set up Azure Application Insights to monitor ML models
3
-
titleSuffix: Azure Machine Learning service
4
-
description: Monitor web services deployed with Azure Machine Learning service using Azure Application Insights
3
+
titleSuffix: Azure Machine Learning
4
+
description: Monitor web services deployed with Azure Machine Learning using Azure Application Insights
5
5
services: machine-learning
6
6
ms.service: machine-learning
7
7
ms.subservice: core
@@ -14,7 +14,7 @@ ms.custom: seoapril2019
14
14
---
15
15
# Monitor your Azure Machine Learning models with Application Insights
16
16
17
-
In this article, you learn how to set up Azure Application Insights for your Azure Machine Learning service. Application Insights gives you the opportunity to monitor:
17
+
In this article, you learn how to set up Azure Application Insights for Azure Machine Learning. Application Insights gives you the opportunity to monitor:
18
18
* Request rates, response times, and failure rates.
19
19
* Dependency rates, response times, and failure rates.
20
20
* Exceptions.
@@ -24,7 +24,7 @@ In this article, you learn how to set up Azure Application Insights for your Azu
24
24
25
25
## Prerequisites
26
26
27
-
* If you don’t have an Azure subscription, create a free account before you begin. Try the [free or paid version of Azure Machine Learning service](https://aka.ms/AMLFree) today.
27
+
* If you don’t have an Azure subscription, create a free account before you begin. Try the [free or paid version of Azure Machine Learning](https://aka.ms/AMLFree) today.
28
28
29
29
* An Azure Machine Learning workspace, a local directory that contains your scripts, and the Azure Machine Learning SDK for Python installed. To learn how to get these prerequisites, see [How to configure a development environment](how-to-configure-environment.md).
30
30
* A trained machine learning model to be deployed to Azure Kubernetes Service (AKS) or Azure Container Instance (ACI). If you don't have one, see the [Train image classification model](tutorial-train-models-with-aml.md) tutorial.
@@ -105,7 +105,7 @@ You can enable and disable Application Insights in the Azure portal.
105
105
106
106
107
107
## Evaluate data
108
-
Your service's data is stored in your Application Insights account, within the same resource group as your Azure Machine Learning service.
108
+
Your service's data is stored in your Application Insights account, within the same resource group as Azure Machine Learning.
109
109
To view it:
110
110
1. Go to your Machine Learning service workspace in the [Azure portal](https://portal.azure.com) and click on Application Insights link.
Copy file name to clipboardExpand all lines: articles/machine-learning/service/how-to-enable-data-collection.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: Collect data on your production models
3
-
titleSuffix: Azure Machine Learning service
3
+
titleSuffix: Azure Machine Learning
4
4
description: Learn how to collect Azure Machine Learning input model data in an Azure Blob storage.
5
5
services: machine-learning
6
6
ms.service: machine-learning
@@ -15,7 +15,7 @@ ms.custom: seodec18
15
15
---
16
16
# Collect data for models in production
17
17
18
-
In this article, you can learn how to collect input model data from the Azure Machine Learning services you've deployed into Azure Kubernetes Cluster (AKS) into an Azure Blob storage.
18
+
In this article, you can learn how to collect input model data from Azure Machine Learning you've deployed into Azure Kubernetes Cluster (AKS) into an Azure Blob storage.
19
19
20
20
Once enabled, this data you collect helps you:
21
21
*[Monitor data drifts](how-to-monitor-data-drift.md) as production data enters your model
@@ -46,9 +46,9 @@ The path to the output data in the blob follows this syntax:
46
46
47
47
## Prerequisites
48
48
49
-
- If you don’t have an Azure subscription, create a free account before you begin. Try the [free or paid version of Azure Machine Learning service](https://aka.ms/AMLFree) today.
49
+
- If you don’t have an Azure subscription, create a free account before you begin. Try the [free or paid version of Azure Machine Learning](https://aka.ms/AMLFree) today.
50
50
51
-
- An Azure Machine Learning service workspace, a local directory containing your scripts, and the Azure Machine Learning SDK for Python installed. Learn how to get these prerequisites using the [How to configure a development environment](how-to-configure-environment.md) document.
51
+
- An Azure Machine Learning workspace, a local directory containing your scripts, and the Azure Machine Learning SDK for Python installed. Learn how to get these prerequisites using the [How to configure a development environment](how-to-configure-environment.md) document.
52
52
53
53
- A trained machine learning model to be deployed to Azure Kubernetes Service (AKS). If you don't have one, see the [train image classification model](tutorial-train-models-with-aml.md) tutorial.
54
54
@@ -57,7 +57,7 @@ The path to the output data in the blob follows this syntax:
57
57
-[Set up your environment](how-to-configure-environment.md) and install the [Monitoring SDK](https://aka.ms/aml-monitoring-sdk).
58
58
59
59
## Enable data collection
60
-
Data collection can be enabled regardless of the model being deployed through Azure Machine Learning Service or other tools.
60
+
Data collection can be enabled regardless of the model being deployed through Azure Machine Learning or other tools.
Copy file name to clipboardExpand all lines: articles/machine-learning/service/how-to-enable-logging.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
-
title: Enable logging in Azure Machine Learning service
3
-
titleSuffix: Azure Machine Learning service
4
-
description: Learn how to enable logging in Azure Machine Learning service using both the default Python logging package, as well as using SDK-specific functionality.
2
+
title: Enable logging in Azure Machine Learning
3
+
titleSuffix: Azure Machine Learning
4
+
description: Learn how to enable logging in Azure Machine Learning using both the default Python logging package, as well as using SDK-specific functionality.
5
5
ms.author: trbye
6
6
author: trevorbye
7
7
services: machine-learning
@@ -12,7 +12,7 @@ ms.reviewer: trbye
12
12
ms.date: 07/12/2019
13
13
---
14
14
15
-
# Enable logging in Azure Machine Learning service
15
+
# Enable logging in Azure Machine Learning
16
16
17
17
The Azure Machine Learning Python SDK allows you to enable logging using both the default Python logging package, as well as using SDK-specific functionality both for local logging and logging to your workspace in the portal. Logs provide developers with real-time information about the application state, and can help with diagnosing errors or warnings. In this article, you learn different ways of enabling logging in the following areas:
18
18
@@ -22,7 +22,7 @@ The Azure Machine Learning Python SDK allows you to enable logging using both th
22
22
> * Deployed models
23
23
> * Python `logging` settings
24
24
25
-
[Create an Azure Machine Learning service workspace](how-to-manage-workspace.md). Use the [guide](https://docs.microsoft.com/python/api/overview/azure/ml/install?view=azure-ml-py) for more information the SDK.
25
+
[Create an Azure Machine Learning workspace](how-to-manage-workspace.md). Use the [guide](https://docs.microsoft.com/python/api/overview/azure/ml/install?view=azure-ml-py) for more information the SDK.
0 commit comments