Skip to content

Commit 3e44318

Browse files
Merge pull request #4085 from Blackmist/372349-uuf
adding note
2 parents 6f5b3e8 + 4e9d774 commit 3e44318

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

articles/machine-learning/how-to-manage-environments-in-studio.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.subservice: core
88
author: Blackmist
99
ms.author: larryfr
1010
ms.reviewer: osiotugo
11-
ms.date: 11/22/2024
11+
ms.date: 04/14/2025
1212
ms.topic: how-to
1313
ms.custom:
1414
# Customer Intent: As a Data Scientist, I want to understand how to manage environments for training and inference in Azure Machine Learning studio.
@@ -36,6 +36,9 @@ For a high-level overview of environments, see [What are Azure Machine Learning
3636

3737
Curated environments contain collections of Python packages and are available in your workspace by default. These environments are backed by cached Docker images, which reduce the job preparation cost and support training and inferencing scenarios.
3838

39+
> [!TIP]
40+
> When you work with curated environments in the CLI or SDK, the curated environment names begin with `AzureML-`. When you use the Azure Machine Learning studio, the curated environments don't have this prefix. The reason for this difference is that the studio UI displays curated and custom environments on separate tabs, so the prefix isn't necessary. The CLI and SDK don't have this separation, so the prefix is used to differentiate between curated and custom environments.
41+
3942
Select an environment to see detailed information about its contents. For more information, see [Azure Machine Learning curated environments](resource-curated-environments.md).
4043

4144
## Create an environment

articles/machine-learning/reference-yaml-job-command.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: reference
99
ms.custom: cliv2, devx-track-python, update-code2
1010
author: Blackmist
1111
ms.author: larryfr
12-
ms.date: 08/29/2024
12+
ms.date: 04/14/2025
1313
ms.reviewer: balapv
1414
---
1515

@@ -36,7 +36,7 @@ The source JSON schema can be found at https://azuremlschemas.azureedge.net/late
3636
| `tags` | object | Dictionary of tags for the job. | | |
3737
| `command` | string | The command to execute. | | |
3838
| `code` | string | Local path to the source code directory to be uploaded and used for the job. | | |
39-
| `environment` | string or object | The environment to use for the job. Can be either a reference to an existing versioned environment in the workspace or an inline environment specification. <br><br> To reference an existing environment, use the `azureml:<environment_name>:<environment_version>` syntax or `azureml:<environment_name>@latest` (to reference the latest version of an environment). <br><br> To define an environment inline, follow the [Environment schema](reference-yaml-environment.md#yaml-syntax). Exclude the `name` and `version` properties as they aren't supported for inline environments. | | |
39+
| `environment` | string or object | The environment to use for the job. Can be either a reference to an existing versioned environment in the workspace or an inline environment specification. <br><br> To reference an existing environment, use the `azureml:<environment_name>:<environment_version>` syntax or `azureml:<environment_name>@latest` (to reference the latest version of an environment). <br><br> To define an environment inline, follow the [Environment schema](reference-yaml-environment.md#yaml-syntax). Exclude the `name` and `version` properties as they aren't supported for inline environments.<br><br> When you work with curated environments in the CLI or SDK, curated environment names begin with `AzureML-`. When you use the Azure Machine Learning studio, the curated environment names don't have this prefix. The reason for this difference is that the studio UI displays curated and custom environments on separate tabs, so the prefix isn't necessary. The CLI and SDK don't have this separation, so the prefix is used to differentiate between curated and custom environments. | | |
4040
| `environment_variables` | object | Dictionary of environment variable key-value pairs to set on the process where the command is executed. | | |
4141
| `distribution` | object | The distribution configuration for distributed training scenarios. One of [MpiConfiguration](#mpiconfiguration), [PyTorchConfiguration](#pytorchconfiguration), or [TensorFlowConfiguration](#tensorflowconfiguration). | | |
4242
| `compute` | string | Name of the compute target to execute the job on. Can be either a reference to an existing compute in the workspace (using the `azureml:<compute_name>` syntax) or `local` to designate local execution. **Note:** jobs in pipeline didn't support `local` as `compute` | | `local` |

0 commit comments

Comments
 (0)