Skip to content

Commit e8f730a

Browse files
committed
change name to be less specific
1 parent fb2e225 commit e8f730a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/machine-learning/v1/how-to-migrate-from-estimators-to-scriptrunconfig.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ When using ScriptRunConfig, all environment-related configurations are encapsula
4747
* [Use a curated environment](../how-to-use-environments.md#use-a-curated-environment) - curated environments are predefined environments available in your workspace by default. There is a corresponding curated environment for each of the preconfigured framework/version Docker images that backed each framework estimator.
4848
* [Define your own custom environment](how-to-use-environments.md)
4949

50-
Here is an example of using the curated PyTorch environment for training:
50+
Here is an example of using the curated environment for training:
5151

5252
```python
5353
from azureml.core import Workspace, ScriptRunConfig, Environment
5454

55-
curated_env_name = 'AzureML-pytorch-1.10-ubuntu18.04-py38-cuda11-gpu'
55+
curated_env_name = '<add Pytorch curated environment name here>'
5656
pytorch_env = Environment.get(workspace=ws, name=curated_env_name)
5757

5858
compute_target = ws.compute_targets['my-cluster']

0 commit comments

Comments
 (0)