Skip to content

Commit 1462d05

Browse files
authored
Merge pull request #89686 from changeworld/patch-63
Fix typo
2 parents a0d73fa + 810dbc2 commit 1462d05

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/machine-learning/component-reference/execute-python-script.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ The Execute Python Script component contains sample Python code that you can use
199199
> [!IMPORTANT]
200200
> Please use unique and meaningful name for files in the script bundle since some common words (like `test`, `app` and etc) are reserved for built-in services.
201201
202-
Following is a script bundle example, which contains a python script file and a txt file:
202+
Following is a script bundle example, which contains a Python script file and a txt file:
203203

204204
> [!div class="mx-imgBorder"]
205205
> ![Script bundle example](media/module/python-script-bundle.png)
@@ -221,7 +221,7 @@ The Execute Python Script component contains sample Python code that you can use
221221
# Execution logic goes here
222222
print(f'Input pandas.DataFrame #1: {dataframe1}')
223223

224-
# Test the custom defined python function
224+
# Test the custom defined Python function
225225
dataframe1 = my_func(dataframe1)
226226

227227
# Test to read custom uploaded files by relative path
@@ -257,7 +257,7 @@ The Execute Python Script component contains sample Python code that you can use
257257

258258
If the component is completed, check the output if as expected.
259259

260-
If the component is failed, you need to do some troubleshooting. Select the component, and open **Outputs+logs** in the right pane. Open **70_driver_log.txt** and search **in azureml_main**, then you could find which line caused the error. For example, "File "/tmp/tmp01_ID/user_script.py", line 17, in azureml_main" indicates that the error occurred in the 17 line of your python script.
260+
If the component is failed, you need to do some troubleshooting. Select the component, and open **Outputs+logs** in the right pane. Open **70_driver_log.txt** and search **in azureml_main**, then you could find which line caused the error. For example, "File "/tmp/tmp01_ID/user_script.py", line 17, in azureml_main" indicates that the error occurred in the 17 line of your Python script.
261261

262262
## Results
263263

0 commit comments

Comments
 (0)