Skip to content

Commit 91454c4

Browse files
authored
Merge pull request #100484 from YutongTie-MSFT/patch-88
(AzureCXP) fixes MicrosoftDocs/azure-docs#45806
2 parents 6e9553f + 8291882 commit 91454c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/machine-learning/how-to-train-ml-models.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Once you've trained the model, you can save and register it to your workspace. M
129129
Running the following code will register the model to your workspace, and will make it available to reference by name in remote compute contexts or deployment scripts. See [`register_model`](https://docs.microsoft.com/python/api/azureml-core/azureml.core.run.run?view=azure-ml-py#register-model-model-name--model-path-none--tags-none--properties-none--model-framework-none--model-framework-version-none--description-none--datasets-none--sample-input-dataset-none--sample-output-dataset-none--resource-configuration-none----kwargs-) in the reference docs for more information and additional parameters.
130130

131131
```python
132-
model = run.register_model(model_name='sklearn-sample')
132+
model = run.register_model(model_name='sklearn-sample', model_path=None)
133133
```
134134

135135
## GitHub tracking and integration

0 commit comments

Comments
 (0)