Skip to content

Commit 7149e72

Browse files
committed
Fix typo
python -> Python
1 parent 7829812 commit 7149e72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/machine-learning/migrate-to-v2-execution-pipeline.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ This article gives a comparison of scenario(s) in SDK v1 and SDK v2. In the foll
155155
cluster_name = "cpu-cluster"
156156
print(ml_client.compute.get(cluster_name))
157157

158-
# Import components that are defined with python function
158+
# Import components that are defined with Python function
159159
with open("src/components.py") as fin:
160160
print(fin.read())
161161

@@ -173,7 +173,7 @@ This article gives a comparison of scenario(s) in SDK v1 and SDK v2. In the foll
173173
# define a pipeline with component
174174
@pipeline(default_compute=cluster_name)
175175
def pipeline_with_python_function_components(input_data, test_data, learning_rate):
176-
"""E2E dummy train-score-eval pipeline with components defined via python function components"""
176+
"""E2E dummy train-score-eval pipeline with components defined via Python function components"""
177177

178178
# Call component obj as function: apply given inputs & parameters to create a node in pipeline
179179
train_with_sample_data = train_model(

0 commit comments

Comments
 (0)