Skip to content

Commit 886a4e7

Browse files
Merge pull request #92780 from Blackmist/pipeline-yaml
Pipeline yaml
2 parents d9656c3 + dceab38 commit 886a4e7

File tree

3 files changed

+477
-1
lines changed

3 files changed

+477
-1
lines changed

articles/machine-learning/service/reference-azure-machine-learning-cli.md

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.topic: conceptual
1010
ms.reviewer: jmartens
1111
ms.author: jordane
1212
author: jpe316
13-
ms.date: 08/20/2019
13+
ms.date: 10/22/2019
1414
ms.custom: seodec18
1515
---
1616

@@ -193,6 +193,40 @@ The following commands demonstrate how to create, register, and list Azure Machi
193193
194194
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).
195195
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+
196230
## Model registration, profiling, deployment
197231
198232
The following commands demonstrate how to register a trained model, and then deploy it as a production service:

0 commit comments

Comments
 (0)