Skip to content

Commit 425db21

Browse files
Remind syntax
1 parent 817b267 commit 425db21

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@ After you create the model, you can use [Train Model](train-model.md) to train t
2828
Use of this module requires intermediate or expert knowledge of Python. The module supports use of any learner that's included in the Python packages already installed in Azure Machine Learning. See the preinstalled Python package list in [Execute Python Script](execute-python-script.md).
2929

3030

31+
> [!NOTE]
32+
> 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. Also pay extra attentions to the pre-installed modules list in [Execute Python Script](execute-python-script.md). If you need to import modules which are not listed, please installing the corresponding packages such as
33+
> ```Python
34+
> import os
35+
> os.system(f"pip install scikit-misc")
36+
> ```
37+
3138
This article shows how to use **Create Python Model** with a simple pipeline. Here's a diagram of the pipeline:
3239
3340
![Diagram of Create Python Model](./media/module/create-python-model.png)

0 commit comments

Comments
 (0)