Skip to content

Commit 4e9d774

Browse files
committed
adding note
1 parent f8f4200 commit 4e9d774

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ For a high-level overview of environments, see [What are Azure Machine Learning
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

3939
> [!TIP]
40-
> When you work with curated environments in the CLI or SDK, the curated environment name begins with `AzureML-` followed by the name of the curated environment. When you use the Azure Machine Learning studio, the 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.
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.
4141
4242
Select an environment to see detailed information about its contents. For more information, see [Azure Machine Learning curated environments](resource-curated-environments.md).
4343

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.<br><br> When you work with curated environments in the CLI or SDK, curated environment name begins with `AzureML-` followed by the name of the curated environment. 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. | | |
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)