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/reference-azure-machine-learning-cli.md
+35-1Lines changed: 35 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ ms.topic: conceptual
10
10
ms.reviewer: jmartens
11
11
ms.author: jordane
12
12
author: jpe316
13
-
ms.date: 08/20/2019
13
+
ms.date: 10/22/2019
14
14
ms.custom: seodec18
15
15
---
16
16
@@ -193,6 +193,40 @@ The following commands demonstrate how to create, register, and list Azure Machi
193
193
194
194
For more information, see [az ml environment download](https://docs.microsoft.com/cli/azure/ext/azure-cli-ml/ml/environment?view=azure-cli-latest#ext-azure-cli-ml-az-ml-environment-download).
195
195
196
+
## ML pipeline management
197
+
198
+
The following commands demonstrate how to work with machine learning pipelines:
199
+
200
+
+ Create a machine learning pipeline:
201
+
202
+
```azurecli-interactive
203
+
az ml pipeline create -n mypipeline -y mypipeline.yml
204
+
```
205
+
206
+
For more information, see [az ml pipeline create](https://docs.microsoft.com/cli/azure/ext/azure-cli-ml/ml/pipeline?view=azure-cli-latest#ext-azure-cli-ml-az-ml-pipeline-create).
207
+
208
+
For more information on the pipeline YAML file, see [Define machine learning pipelines in YAML](reference-pipeline-yaml.md).
209
+
210
+
+ Run a pipeline:
211
+
212
+
```azurecli-interactive
213
+
az ml run submit-pipeline -n myexperiment -y mypipeline.yml
214
+
```
215
+
216
+
For more information, see [az ml run submit-pipeline](https://docs.microsoft.com/cli/azure/ext/azure-cli-ml/ml/run?view=azure-cli-latest#ext-azure-cli-ml-az-ml-run-submit-pipeline).
217
+
218
+
For more information on the pipeline YAML file, see [Define machine learning pipelines in YAML](reference-pipeline-yaml.md).
219
+
220
+
+ Schedule a pipeline:
221
+
222
+
```azurecli-interactive
223
+
az ml pipeline create-schedule -n myschedule -e myexpereiment -i mypipelineid -y myschedule.yml
224
+
```
225
+
226
+
For more information, see [az ml pipeline create-schedule](https://docs.microsoft.com/cli/azure/ext/azure-cli-ml/ml/pipeline?view=azure-cli-latest#ext-azure-cli-ml-az-ml-pipeline-create-schedule).
227
+
228
+
For more information on the pipeline schedule YAML file, see [Define machine learning pipelines in YAML](reference-pipeline-yaml.md#schedules).
229
+
196
230
## Model registration, profiling, deployment
197
231
198
232
The following commands demonstrate how to register a trained model, and then deploy it as a production service:
0 commit comments