Skip to content

Commit 473c67d

Browse files
authored
Merge pull request #107950 from likebupt/change-run-to-submit
change Run to Submit
2 parents 855a403 + db69418 commit 473c67d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+65
-64
lines changed

articles/machine-learning/algorithm-module-reference/add-columns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Use this module to concatenate two datasets. You combine all columns from the tw
2929

3030
- You cannot choose individual columns to add. All the columns from each dataset are concatenated when you use **Add Columns**. Therefore, if you want to add only a subset of the columns, use Select Columns in Dataset to create a dataset with the columns you want.
3131

32-
3. Run the pipeline.
32+
3. Submit the pipeline.
3333

3434
### Results
3535
After the pipeline has run:

articles/machine-learning/algorithm-module-reference/add-rows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ To concatenate rows from two datasets, the rows must have exactly the same sche
3232

3333
2. Connect the datasets to the two input ports. The dataset that you want to append should be connected to the second (right) port.
3434

35-
3. Run the pipeline. The number of rows in the output dataset should equal the sum of the rows of both input datasets.
35+
3. Submit the pipeline. The number of rows in the output dataset should equal the sum of the rows of both input datasets.
3636

3737
If you add the same dataset to both inputs of the **Add Rows** module, the dataset is duplicated.
3838

articles/machine-learning/algorithm-module-reference/apply-math-operation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Each instance of this module can perform only one type of operation at a time. T
8282
- **Inplace**. The values in the columns used as inputs are replaced with the new calculated values.
8383
- **ResultOnly**. A single column is returned containing the results of the math operation.
8484

85-
1. Run the pipeline.
85+
1. Submit the pipeline.
8686

8787
## Results
8888

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The Assign Data to Clusters module returns a dataset that contains the probable
3838

3939
If you clear this check box, only the results are returned. This option might be useful when you create predictions as part of a web service.
4040

41-
5. Run the pipeline.
41+
5. Submit the pipeline.
4242

4343
### Results
4444

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ The gradient boosting method can also be used for classification problems by red
8080

8181

8282

83-
10. Run the pipeline.
83+
10. Submit the pipeline.
8484

8585
## Results
8686

articles/machine-learning/algorithm-module-reference/clean-missing-data.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Each time that you apply the [Clean Missing Data](./clean-missing-data.md) modu
106106

107107
7. **Generate missing value indicator column**: Select this option if you want to output some indication of whether the values in the column met the criteria for missing value cleaning. This option is particularly useful when you are setting up a new cleaning operation and want to make sure it works as designed.
108108

109-
8. Run the pipeline.
109+
8. Submit the pipeline.
110110

111111
### Results
112112

@@ -134,7 +134,7 @@ If you need to repeat cleaning operations often, we recommend that you save your
134134

135135
However, suppose you created a transformation on a subset of numeric columns. You can apply this transformation to a dataset of mixed column types without raising an error, because the missing values are changed only in the matching numeric columns.
136136

137-
6. Run the pipeline.
137+
6. Submit the pipeline.
138138

139139
## Next steps
140140

articles/machine-learning/algorithm-module-reference/clip-values.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ If you need to apply clipping methods or different criteria to some columns, you
8080

8181
To keep the original column and add a new column with the clipped values, deselect this option.
8282

83-
1. Run the pipeline.
83+
1. Submit the pipeline.
8484

8585
Right-click the **Clip Values** module and select **Visualize** or select the module and switch to the **Outputs** tab in the right panel, click on the histogram icon in the **Port outputs**, to review the values and make sure the clipping operation met your expectations.
8686

articles/machine-learning/algorithm-module-reference/convert-to-csv.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ When you convert a dataset to CSV, the csv is saved in your Azure ML workspace.
3737

3838
2. Connect it to any module that outputs a dataset.
3939

40-
3. Run the pipeline.
40+
3. Submit the pipeline.
4141

4242
### Results
4343

articles/machine-learning/algorithm-module-reference/convert-to-dataset.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ We recommend that you use the [Edit Metadata](edit-metadata.md) module to prepar
4747
Note that the **ReplaceValues** operation applies only to exact matches. For example, these strings would not be affected: `obs.`, `obsolete`.
4848

4949

50-
5. Run the pipeline.
50+
5. Submit the pipeline.
5151

5252
## Results
5353

articles/machine-learning/algorithm-module-reference/convert-to-indicator-values.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ This module also outputs a definition of the transformation used to convert to i
3636
> If you choose the option to overwrite, the source column is not actually deleted or modified. Instead, the new columns are generated and presented in the output dataset, and the source column remains available in the workspace.
3737
> If you need to see the original data, you can use the [Add Columns](add-columns.md) module at any time to add the source column back in.
3838
39-
1. Run the pipeline.
39+
1. Submit the pipeline.
4040

4141
## Results
4242

@@ -85,7 +85,7 @@ If you need to repeat indicator values operations often, you can save your data
8585

8686
When you apply a saved transformation, you cannot select which columns to transform. This is because the transformation has been defined and applies automatically to the data types specified in the original operation.
8787

88-
1. Run the pipeline.
88+
1. Submit the pipeline.
8989

9090
## Technical notes
9191

0 commit comments

Comments
 (0)