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/concept-train-machine-learning-model.md
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ author: Blackmist
8
8
ms.author: larryfr
9
9
ms.subservice: core
10
10
ms.topic: conceptual
11
-
ms.date: 09/18/2019
11
+
ms.date: 03/05/2020
12
12
---
13
13
14
14
# Train models with Azure Machine Learning
@@ -24,6 +24,8 @@ Azure Machine Learning provides several ways to train your models, from code fir
24
24
|[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. |
25
25
| [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. |
26
26
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
+
27
29
+**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.
28
30
29
31
+**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
84
86
*[Examples: Pipeline with automated machine learning](https://aka.ms/pl-automl)
85
87
*[Examples: Pipeline with estimators](https://aka.ms/pl-estimator)
86
88
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
+
87
98
## Azure Machine Learning designer
88
99
89
100
The designer lets you to train models using a drag and drop interface in your web browser.
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-secure-web-service.md
+4-4Lines changed: 4 additions & 4 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: Secure web services using SSL
2
+
title: Secure web services using TLS
3
3
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.
5
5
services: machine-learning
6
6
ms.service: machine-learning
7
7
ms.subservice: core
@@ -10,11 +10,11 @@ ms.topic: conceptual
10
10
ms.reviewer: jmartens
11
11
ms.author: aashishb
12
12
author: aashishb
13
-
ms.date: 08/12/2019
13
+
ms.date: 03/05/2020
14
14
ms.custom: seodec18
15
15
---
16
16
17
-
# Use SSL to secure a web service through Azure Machine Learning
17
+
# Use TLS to secure a web service through Azure Machine Learning
Copy file name to clipboardExpand all lines: articles/machine-learning/tutorial-train-deploy-model-cli.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ Learn how to take the following actions:
32
32
33
33
## Prerequisites
34
34
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.
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.
36
36
37
37
* 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).
38
38
@@ -370,7 +370,7 @@ az ml model deploy -n myservice -m "mymodel:1" --ic inferenceConfig.yml --dc aci
370
370
```
371
371
372
372
> [!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.
374
374
375
375
This command deploys a new service named `myservice`, using version 1 of the model that you registered previously.
0 commit comments