Skip to content

Commit 4866d88

Browse files
authored
Acrolinx
1 parent 3d3742d commit 4866d88

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/machine-learning/how-to-share-models-pipelines-across-workspaces-with-registries.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ ml_client_registry.components.create_or_update(train_model)
297297
298298
Note down the `name` and `version` of the component from the output and pass them to the `ml_client_registry.component.get()` method to fetch the component from registry.
299299
300-
You can also use `ml_client_registry.component.list()` to list all components in the registry or browse all components in the Azure Machine Learning Studio UI. Make sure you navigate to the global UI and look for the Registries hub.
300+
You can also use `ml_client_registry.component.list()` to list all components in the registry or browse all components in the Azure Machine Learning studio UI. Make sure you navigate to the global UI and look for the Registries hub.
301301
302302
---
303303
@@ -522,7 +522,7 @@ Note down the `name` and `version` of the model from the output of the `az ml mo
522522
az ml model show --name <model_name> --version <model_version> --registry-name <registry-name>
523523
```
524524
525-
You can also use `az ml model list --registry-name <registry-name>` to list all models in the registry or browse all components in the Azure Machine Learning Studio UI. Make sure you navigate to the global UI and look for the Registries hub.
525+
You can also use `az ml model list --registry-name <registry-name>` to list all models in the registry or browse all components in the Azure Machine Learning studio UI. Make sure you navigate to the global UI and look for the Registries hub.
526526
527527
# [Python SDK](#tab/python)
528528
@@ -579,7 +579,7 @@ Note down the `name` and `version` of the model from the output and use them wit
579579
mlflow_model_from_registry = ml_client_registry.models.get(name="nyc-taxi-model", version=str(1))
580580
print(mlflow_model_from_registry)
581581
```
582-
You can also use `ml_client_registry.models.list()` to list all models in the registry or browse all components in the Azure Machine Learning Studio UI. Make sure you navigate to the global UI and look for the Registries hub.
582+
You can also use `ml_client_registry.models.list()` to list all models in the registry or browse all components in the Azure Machine Learning studio UI. Make sure you navigate to the global UI and look for the Registries hub.
583583
584584
---
585585

0 commit comments

Comments
 (0)