Skip to content

Commit dc12287

Browse files
committed
Writing
1 parent bd8afbf commit dc12287

File tree

1 file changed

+19
-24
lines changed

1 file changed

+19
-24
lines changed

articles/machine-learning/samples-designer.md

Lines changed: 19 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,23 @@ ms.topic: sample
99

1010
author: peterclu
1111
ms.author: peterlu
12-
ms.date: 03/06/2020
12+
ms.date: 03/10/2020
1313
---
1414
# Designer sample pipelines
1515

1616
Use the built-in example in Azure Machine Learning designer to quickly get started building your own machine learning pipelines.
1717

18-
The Azure Machine Learning designer [GitHub repository](https://github.com/Azure/MachineLearningDesigner) contains the latest pipeline samples to help you get started with common machine learning scenarios. This article shows the following:
19-
20-
- Instructions for using designer samples
21-
- Links to the sample pipeline documentation
18+
The Azure Machine Learning designer [GitHub repository](https://github.com/Azure/MachineLearningDesigner) contains the latest pipeline samples to help you get started with common machine learning scenarios.
2219

2320
## Prerequisites
2421

2522
* An Azure subscription. If you don't have an Azure subscription, create a [free account](https://aka.ms/AMLFree).
2623
* An Azure Machine Learning workspace with the Enterprise SKU.
2724

2825

29-
## How to use the sample pipelines
26+
## How to use sample pipelines
3027

31-
Use the sample pipelines as a starting point to quickly get started with common machine learning scenarios.
28+
The designer saves a copy of the sample pipelines to your studio workspace. You can edit the pipeline to adapt it to your needs and save it as your own. Use them as a starting point to jumpstart your projects.
3229

3330
1. Sign in to <a href="https://ml.azure.com?tabs=jre" target="_blank">ml.azure.com</a>, and select the workspace you want to work with.
3431

@@ -38,47 +35,45 @@ Use the sample pipelines as a starting point to quickly get started with common
3835

3936
Select **Show more samples** for a complete list of samples.
4037

41-
The designer saves a copy of the sample to your studio workspace. You can edit the pipeline to adapt it to your needs and save it as your own.
42-
4338
## Regression samples
4439

4540
Learn more about the built-in regression samples.
4641

4742
| Sample title | Description |
4843
| --- | --- |
49-
| [Sample 1: Regression - Automobile Price Prediction (Basic)]() | Predict car prices using linear regression. |
50-
| [Sample 2: Regression - Automobile Price Prediction (Advanced)]() | Predict car prices using decision forest and boosted decision tree regressors. Compare models to find the best algorithm.
44+
| [Sample 1: Regression - Automobile Price Prediction (Basic)](https://github.com/Azure/MachineLearningDesigner/blob/master/articles/samples/how-to-designer-sample-regression-automobile-price-basic.md) | Predict car prices using linear regression. |
45+
| [Sample 2: Regression - Automobile Price Prediction (Advanced)](https://github.com/Azure/MachineLearningDesigner/blob/master/articles/samples/how-to-designer-sample-regression-automobile-price-compare-algorithms.md) | Predict car prices using decision forest and boosted decision tree regressors. Compare models to find the best algorithm.
5146

5247
## Classification samples
5348

54-
Learn more about the built-in classification samples.
49+
Learn more about the built-in classification samples. You can learn more about the samples without documentation links by opening the samples and viewing the module comments instead.
5550

5651
| Sample title | Description |
5752
| --- | --- |
58-
| [Sample 3: Binary Classification with Feature Selection - Income Prediction]() | Predict income as high or low, using a two-class boosted decision tree. Use Pearson correlation to select features.
59-
| [Sample 4: Binary Classification with custom Python script - Credit Risk Prediction]() | Classify credit applications as high or low risk. Use the Execute Python Script module to weight your data.
60-
| [Sample 5: Binary Classification - Customer Relationship Prediction]() | Predict customer churn using two-class boosted decision trees. Use SMOTE to sample biased data.
61-
| [Sample 7: Text Classification - Wikipedia SP 500 Dataset]() | Classify company types from Wikipedia articles with multiclass logistic regression. |
62-
| [Sample 12: Multiclass Classification - Letter Recognition]() | Create an ensemble of binary classifiers to classify written letters. |
53+
| [Sample 3: Binary Classification with Feature Selection - Income Prediction](https://github.com/Azure/MachineLearningDesigner/blob/master/articles/samples/how-to-designer-sample-classification-predict-income.md) | Predict income as high or low, using a two-class boosted decision tree. Use Pearson correlation to select features.
54+
| [Sample 4: Binary Classification with custom Python script - Credit Risk Prediction](https://github.com/Azure/MachineLearningDesigner/blob/master/articles/samples/how-to-designer-sample-classification-credit-risk-cost-sensitive.md) | Classify credit applications as high or low risk. Use the Execute Python Script module to weight your data.
55+
| [Sample 5: Binary Classification - Customer Relationship Prediction](https://github.com/Azure/MachineLearningDesigner/blob/master/articles/samples/how-to-designer-sample-classification-churn.md) | Predict customer churn using two-class boosted decision trees. Use SMOTE to sample biased data.
56+
| [Sample 7: Text Classification - Wikipedia SP 500 Dataset](https://github.com/Azure/MachineLearningDesigner/blob/master/articles/samples/how-to-designer-sample-text-classification.md) | Classify company types from Wikipedia articles with multiclass logistic regression. |
57+
| Sample 12: Multiclass Classification - Letter Recognition | Create an ensemble of binary classifiers to classify written letters. |
6358

6459
## Recommender samples
6560

66-
Learn more about the built-in recommender samples.
61+
Learn more about the built-in recommender samples. You can learn more about the samples without documentation links by opening the samples and viewing the module comments instead.
6762

6863
| Sample title | Description |
6964
| --- | --- |
70-
| [Sample 10: Recommendation - Movie Rating Tweets]() | Build a movie recommender engine from movie titles and rating. |
65+
| Sample 10: Recommendation - Movie Rating Tweets | Build a movie recommender engine from movie titles and rating. |
7166

7267
## Utility samples
7368

74-
Learn more about the samples that demonstrate machine learning utilities and features.
69+
Learn more about the samples that demonstrate machine learning utilities and features. You can learn more about the samples without documentation links by opening the samples and viewing the module comments instead.
7570

7671
| Sample title | Description |
7772
| --- | --- |
78-
| [Sample 6: Use custom R script - Flight Delay Prediction]() |
79-
| [Sample 8: Cross Validation for Binary Classification - Adult Income Prediction]() | Use cross validation to build a binary classifier for adult income.
80-
| [Sample 9: Permutation Feature Importance]() | Use permutation feature importance to compute importance scores for the test dataset.
81-
| [Sample 11: Tune Parameters for Binary Classification - Adult Income Prediction]() | Use Tune Model Hyperparameters to find optimal hyperparameters to build a binary classifier. |
73+
| [Sample 6: Use custom R script - Flight Delay Prediction](https://github.com/Azure/MachineLearningDesigner/blob/master/articles/samples/how-to-designer-sample-classification-flight-delay.md) |
74+
| Sample 8: Cross Validation for Binary Classification - Adult Income Prediction | Use cross validation to build a binary classifier for adult income.
75+
| Sample 9: Permutation Feature Importance | Use permutation feature importance to compute importance scores for the test dataset.
76+
| Sample 11: Tune Parameters for Binary Classification - Adult Income Prediction | Use Tune Model Hyperparameters to find optimal hyperparameters to build a binary classifier. |
8277

8378
## Clean up resources
8479

0 commit comments

Comments
 (0)