You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/machine-learning/algorithm-module-reference/create-python-model.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ Use of this module requires intermediate or expert knowledge of Python. The modu
31
31
> 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.
32
32
33
33
> [!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.
35
35
36
36
This article shows how to use **Create Python Model** with a simple pipeline. Here's a diagram of the pipeline:
37
37
@@ -83,9 +83,9 @@ This article shows how to use **Create Python Model** with a simple pipeline. He
83
83
84
84
```
85
85
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**.
87
87
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.
89
89
90
90
The following script is sample evaluation code:
91
91
@@ -98,7 +98,7 @@ This article shows how to use **Create Python Model** with a simple pipeline. He
98
98
# imports up here can be used to
99
99
import pandas as pd
100
100
101
-
# The entry point function can contain up to two input arguments:
101
+
# The entry point function MUST have two input arguments:
0 commit comments