Skip to content

Commit 02639ca

Browse files
authored
Merge pull request #96503 from PeterCLu/plu-maintenance
Doc maintenance
2 parents 07ecac8 + 548cdd9 commit 02639ca

File tree

8 files changed

+13
-18
lines changed

8 files changed

+13
-18
lines changed

articles/machine-learning/algorithm-module-reference/assign-data-to-clusters.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,14 @@ ms.topic: reference
99

1010
author: xiaoharper
1111
ms.author: zhanxia
12-
ms.date: 05/06/2019
12+
ms.date: 11/19/2019
1313
---
1414
# Module: Assign Data to Clusters
1515

1616
This article describes how to use the *Assign Data to Clusters* module in Azure Machine Learning designer (preview). The module generates predictions through a clustering model that was trained with the *K-means clustering* algorithm.
1717

1818
The Assign Data to Clusters module returns a dataset that contains the probable assignments for each new data point.
1919

20-
2120
## How to use Assign Data to Clusters
2221

2322
1. In Azure Machine Learning designer, locate a previously trained clustering model. You can create and train a clustering model by using either of the following methods:

articles/machine-learning/algorithm-module-reference/create-python-model.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ ms.topic: reference
99

1010
author: xiaoharper
1111
ms.author: zhanxia
12-
ms.date: 05/06/2019
12+
ms.date: 11/19/2019
1313
---
1414
# Create Python Model
1515

16-
This article describes how to use the **Create Python Model** module to create an untrained model from a Python script.
16+
This article describes a module in Azure Machine Learning designer (preview).
1717

18-
You can base the model on any learner that is included in an Python package in the Azure Machine Learning designer environment.
18+
Learn how to use the **Create Python Model** module to create an untrained model from a Python script. You can base the model on any learner that is included in a Python package in the Azure Machine Learning designer environment.
1919

2020
After you create the model, you can use [Train Model](train-model.md) to train the model on a dataset, like any other learner in Azure Machine Learning. The trained model can be passed to [Score Model](score-model.md) to use the model to make predictions. The trained model can then be saved, and the scoring workflow can be published as a web service.
2121

articles/machine-learning/algorithm-module-reference/evaluate-model.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: reference
99

1010
author: xiaoharper
1111
ms.author: zhanxia
12-
ms.date: 05/06/2019
12+
ms.date: 11/19/2019
1313
---
1414
# Evaluate Model module
1515

@@ -23,7 +23,6 @@ Use this module to measure the accuracy of a trained model. You provide a datase
2323
- **Regression Models**
2424

2525

26-
2726
> [!TIP]
2827
> If you are new to model evaluation, we recommend the video series by Dr. Stephen Elston, as part of the [machine learning course](https://blogs.technet.microsoft.com/machinelearning/2015/09/08/new-edx-course-data-science-machine-learning-essentials/) from EdX.
2928
@@ -102,7 +101,7 @@ The following metrics are reported when evaluating classification models. If you
102101

103102
## <a name="bkmk_regression"></a> Metrics for regression models
104103

105-
The metrics returned for regression models are generally designed to estimate the amount of error. A model is considered to fit the data well if the difference between observed and predicted values is small. However, looking at the pattern of the residuals (the difference between any one predicted point and its corresponding actual value) can tell you a lot about potential bias in the model.
104+
The metrics returned for regression models are designed to estimate the amount of error. A model is considered to fit the data well if the difference between observed and predicted values is small. However, looking at the pattern of the residuals (the difference between any one predicted point and its corresponding actual value) can tell you a lot about potential bias in the model.
106105

107106
The following metrics are reported for evaluating regression models. When you compare models, they are ranked by the metric you select for evaluation.
108107

articles/machine-learning/algorithm-module-reference/execute-r-script.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: reference
99

1010
author: xiaoharper
1111
ms.author: peterlu
12-
ms.date: 06/01/2019
12+
ms.date: 11/19/2019
1313
---
1414

1515
# Execute R Script

articles/machine-learning/algorithm-module-reference/join-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: reference
99

1010
author: xiaoharper
1111
ms.author: peterlu
12-
ms.date: 06/01/2019
12+
ms.date: 11/19/2019
1313
---
1414

1515
# Join Data

articles/machine-learning/algorithm-module-reference/k-means-clustering.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: reference
99

1010
author: xiaoharper
1111
ms.author: zhanxia
12-
ms.date: 05/06/2019
12+
ms.date: 11/19/2019
1313
---
1414
# Module: K-Means Clustering
1515

@@ -136,4 +136,4 @@ You can avoid this problem in a couple of ways:
136136

137137
- Create multiple models, varying the metric or iterating more.
138138

139-
In general, with clustering models, it's possible that any given configuration will result in a locally optimized set of clusters. In other words, the set of clusters that's returned by the model suits only the current data points and isn't generalizable to other data. If you use a different initial configuration, the K-means method might find a different, perhaps superior, configuration.
139+
In general, with clustering models, it's possible that any given configuration will result in a locally optimized set of clusters. In other words, the set of clusters that's returned by the model suits only the current data points and isn't generalizable to other data. If you use a different initial configuration, the K-means method might find a different, superior, configuration.

articles/machine-learning/algorithm-module-reference/multiclass-boosted-decision-tree.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ ms.topic: reference
99

1010
author: xiaoharper
1111
ms.author: zhanxia
12-
ms.date: 08/22/2019
13-
ROBOTS: NOINDEX
12+
ms.date: 11/19/2019
1413
---
1514

1615
# Multiclass Boosted Decision Tree

articles/machine-learning/algorithm-module-reference/train-clustering-model.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: reference
99

1010
author: xiaoharper
1111
ms.author: zhanxia
12-
ms.date: 05/06/2019
12+
ms.date: 11/19/2019
1313
---
1414
# Train Clustering Model
1515

@@ -47,12 +47,10 @@ After training has completed:
4747

4848
+ To view the values in the dataset, right-click the module, select **Result datasets**, and click **Visualize**.
4949

50-
+ To save the trained model for later re-use, right-click the module, select **Trained model**, and click **Save As Trained Model**.
50+
+ To save the trained model for later reuse, right-click the module, select **Trained model**, and click **Save As Trained Model**.
5151

5252
+ To generate scores from the model, use [Assign Data to Clusters](assign-data-to-clusters.md).
5353

54-
55-
5654
## Next steps
5755

5856
See the [set of modules available](module-reference.md) to Azure Machine Learning.

0 commit comments

Comments
 (0)