Skip to content

Commit 6ef918c

Browse files
Update create python model
1 parent 2431325 commit 6ef918c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Use of this module requires intermediate or expert knowledge of Python. The modu
3131
> Please be very careful when writing your script and makes sure there is no syntax error, such as using a un-declared object or a un-imported module.
3232
3333
> [!NOTE]
34-
Also pay extra attentions to the pre-installed modules list in [Execute Python Script](execute-python-script.md). Only import pre-installed modules. Please do not install extra packages such as "pip install xgboost" in this script, otherwise errors will be raised when reading models in down-stream modules.
34+
> Also pay extra attentions to the pre-installed modules list in [Execute Python Script](execute-python-script.md). Only import pre-installed modules. Please do not install extra packages such as "pip install xgboost" in this script, otherwise errors will be raised when reading models in down-stream modules.
3535
3636
This article shows how to use **Create Python Model** with a simple pipeline. Here's a diagram of the pipeline:
3737

@@ -83,9 +83,9 @@ This article shows how to use **Create Python Model** with a simple pipeline. He
8383

8484
```
8585

86-
1. Connect the **Create Python Model** module that you just created to **Train Model** and **Score Model**.
86+
2. Connect the **Create Python Model** module that you just created to **Train Model** and **Score Model**.
8787

88-
1. If you need to evaluate the model, add an [Execute Python Script](execute-python-script.md) module and edit the Python script.
88+
3. If you need to evaluate the model, add an [Execute Python Script](execute-python-script.md) module and edit the Python script.
8989

9090
The following script is sample evaluation code:
9191

@@ -98,7 +98,7 @@ This article shows how to use **Create Python Model** with a simple pipeline. He
9898
# imports up here can be used to
9999
import pandas as pd
100100

101-
# The entry point function can contain up to two input arguments:
101+
# The entry point function MUST have two input arguments:
102102
# Param<dataframe1>: a pandas.DataFrame
103103
# Param<dataframe2>: a pandas.DataFrame
104104
def azureml_main(dataframe1 = None, dataframe2 = None):

0 commit comments

Comments
 (0)