Skip to content

Commit e20ed74

Browse files
authored
Merge pull request #106602 from Blackmist/freshness
Freshness
2 parents 03e569f + 8cc085a commit e20ed74

File tree

5 files changed

+25
-10
lines changed

5 files changed

+25
-10
lines changed

articles/machine-learning/concept-train-machine-learning-model.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: Blackmist
88
ms.author: larryfr
99
ms.subservice: core
1010
ms.topic: conceptual
11-
ms.date: 09/18/2019
11+
ms.date: 03/05/2020
1212
---
1313

1414
# Train models with Azure Machine Learning
@@ -24,6 +24,8 @@ Azure Machine Learning provides several ways to train your models, from code fir
2424
| [Estimators](#estimators) | Estimator classes **make it easy to train models based on popular machine learning frameworks**. There are estimator classes for **Scikit-learn**, **PyTorch**, **TensorFlow**, and **Chainer**. There is also a generic estimator that can be used with frameworks that do not already have a dedicated estimator class. You don't have to worry about defining a run configuration when using estimators. |
2525
| [Machine learning pipeline](#machine-learning-pipeline) | Pipelines are not a different training method, but a **way of defining a workflow using modular, reusable steps**, that can include training as part of the workflow. Machine learning pipelines support using automated machine learning, estimators, and run configuration to train models. Since pipelines are not focused specifically on training, the reasons for using a pipeline are more varied than the other training methods. Generally, you might use a pipeline when:<br>* You want to **schedule unattended processes** such as long running training jobs or data preparation.<br>* Use **multiple steps** that are coordinated across heterogeneous compute resources and storage locations.<br>* Use the pipeline as a **reusable template** for specific scenarios, such as retraining or batch scoring.<br>* **Track and version data sources, inputs, and outputs** for your workflow.<br>* Your workflow is **implemented by different teams that work on specific steps independently**. Steps can then be joined together in a pipeline to implement the workflow. |
2626

27+
+ [Azure Machine Learning SDK for Python](#r-sdk): The SDK uses the reticulate package to bind to Azure Machine Learning's Python SDK. This allows you access to core objects and methods implemented in the Python SDK from any R environment.
28+
2729
+ **Designer**: Azure Machine Learning designer (preview) provides an easy entry-point into machine learning for building proof of concepts, or for users with little coding experience. It allows you to train models using a drag and drop web-based UI. You can use Python code as part of the design, or train models without writing any code.
2830

2931
+ **CLI**: The machine learning CLI provides commands for common tasks with Azure Machine Learning, and is often used for **scripting and automating tasks**. For example, once you've created a training script or pipeline, you might use the CLI to start a training run on a schedule or when the data files used for training are updated. For training models, it provides commands that submit training jobs. It can submit jobs using run configurations or pipelines.
@@ -84,6 +86,15 @@ Machine learning pipelines can use the previously mentioned training methods (ru
8486
* [Examples: Pipeline with automated machine learning](https://aka.ms/pl-automl)
8587
* [Examples: Pipeline with estimators](https://aka.ms/pl-estimator)
8688

89+
## R SDK
90+
91+
The R SDK enables you to use the R language with Azure Machine Learning. The SDK uses the reticulate package to bind to Azure Machine Learning's Python SDK. This allows you access to core objects and methods implemented in the Python SDK from any R environment.
92+
93+
For more information, see the following articles:
94+
95+
* [Tutorial: Create a logistic regression model](tutorial-1st-r-experiment.md)
96+
* [Azure Machine Learning SDK for R reference](https://azure.github.io/azureml-sdk-for-r/index.html)
97+
8798
## Azure Machine Learning designer
8899

89100
The designer lets you to train models using a drag and drop interface in your web browser.

articles/machine-learning/how-to-deploy-custom-docker-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: conceptual
99
ms.author: jordane
1010
author: jpe316
1111
ms.reviewer: larryfr
12-
ms.date: 08/22/2019
12+
ms.date: 03/05/2020
1313
---
1414

1515
# Deploy a model using a custom Docker base image

articles/machine-learning/how-to-enable-logging.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.service: machine-learning
88
ms.subservice: core
99
ms.topic: conceptual
1010
ms.reviewer: trbye
11-
ms.date: 07/12/2019
11+
ms.date: 03/05/2020
1212
---
1313

1414
# Enable logging in Azure Machine Learning
@@ -96,7 +96,7 @@ You can also log custom stack traces for your web service by enabling Applicatio
9696
service.update(enable_app_insights=True)
9797
```
9898

99-
See the [how-to](how-to-enable-app-insights.md) for more information on how to work with Application Insights in Azure Machine Learning studio.
99+
For more information, see [Monitor and collect data from ML web service endpoints](how-to-enable-app-insights.md).
100100

101101
## Python native logging settings
102102

@@ -106,3 +106,7 @@ Certain logs in the SDK may contain an error that instructs you to set the loggi
106106
import logging
107107
logging.basicConfig(level=logging.DEBUG)
108108
```
109+
110+
## Next steps
111+
112+
* [Monitor and collect data from ML web service endpoints](how-to-enable-app-insights.md)

articles/machine-learning/how-to-secure-web-service.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Secure web services using SSL
2+
title: Secure web services using TLS
33
titleSuffix: Azure Machine Learning
4-
description: Learn how to enable HTTPS in order to secure a web service that's deployed through Azure Machine Learning.
4+
description: Learn how to enable HTTPS in order to secure a web service that's deployed through Azure Machine Learning. Azure Machine Learning uses TLS version 1.2 to secure models deployed as web services.
55
services: machine-learning
66
ms.service: machine-learning
77
ms.subservice: core
@@ -10,11 +10,11 @@ ms.topic: conceptual
1010
ms.reviewer: jmartens
1111
ms.author: aashishb
1212
author: aashishb
13-
ms.date: 08/12/2019
13+
ms.date: 03/05/2020
1414
ms.custom: seodec18
1515
---
1616

17-
# Use SSL to secure a web service through Azure Machine Learning
17+
# Use TLS to secure a web service through Azure Machine Learning
1818
[!INCLUDE [applies-to-skus](../../includes/aml-applies-to-basic-enterprise-sku.md)]
1919

2020
This article shows you how to secure a web service that's deployed through Azure Machine Learning.

articles/machine-learning/tutorial-train-deploy-model-cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Learn how to take the following actions:
3232
3333
## Prerequisites
3434

35-
* An Azure subscription. If you dont 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.
35+
* An Azure subscription. 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.
3636

3737
* To use the CLI commands in this document from your **local environment**, you need the [Azure CLI](https://docs.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest).
3838

@@ -370,7 +370,7 @@ az ml model deploy -n myservice -m "mymodel:1" --ic inferenceConfig.yml --dc aci
370370
```
371371

372372
> [!NOTE]
373-
> You may receive a warning about "Failed to check LocalWebservice existence". You can safely ignore this, as you are not deploying a local web service.
373+
> You may receive a warning about "Failed to check LocalWebservice existence" or "Failed to create Docker client". You can safely ignore this, as you are not deploying a local web service.
374374

375375
This command deploys a new service named `myservice`, using version 1 of the model that you registered previously.
376376

0 commit comments

Comments
 (0)