Skip to content

Commit 1985798

Browse files
committed
incorporating feedback
1 parent fdc4175 commit 1985798

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/machine-learning/includes/output-path-expressions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ ms.date: 07/26/2023
1111
---
1212

1313
> [!IMPORTANT]
14-
> The following expressions are resolved on the _server_ side, not the _client_ side. This means that the expressions are resolved when the job is submitted, not when the job is created. This also means that the expressions are resolved using the _current_ state of the workspace, not the state of the workspace when the job was created. For example, if you change the default datastore of the workspace after you create the job, the expression `${{default_datastore}}` is resolved to the new default datastore, not the default datastore when the job was created.
14+
> The following expressions are resolved on the _server_ side, not the _client_ side. For scheduled jobs where the job _creation time_ and job _submission time_ are different, the expressions are resolved when the job is submitted. Since these expressions are resolved on the server side, they use the _current_ state of the workspace, not the state of the workspace when the scheduled job was created. For example, if you change the default datastore of the workspace after you create a scheduled job, the expression `${{default_datastore}}` is resolved to the new default datastore, not the default datastore when the scheduled job was created.
1515
1616
| Expression | Description | Scope |
1717
| --- | --- | --- |
18-
| `${{default_datastore}}` | If pipeline default datastore is configured, is resolved as pipeline default datastore name; otherwise will be resolved as workspace default datastore name. <br><br> Pipeline default datastore can be controlled by `pipeline_job.settings.default_datastore`. | Works for all jobs. <br><br> Pipeline jobs have a configurable pipeline default datastore. |
18+
| `${{default_datastore}}` | If pipeline default datastore is configured, is resolved as pipeline default datastore name; otherwise is resolved as workspace default datastore name. <br><br> Pipeline default datastore can be controlled using `pipeline_job.settings.default_datastore`. | Works for all jobs. <br><br> Pipeline jobs have a configurable pipeline default datastore. |
1919
| `${{name}}` | The job name. For pipelines, it's the step job name, not the pipeline job name. | Works for all jobs |
2020
| `${{output_name}}` | The job output name | Works for all jobs |
2121

22-
For example, if `azureml://datastores/${{default_datastore}}/paths/{{$name}}/${{output_name}}` is used as the output path, at runtime it is resolved as a path of `azureml://datastores/workspaceblobstore/paths/<job-name>/model_path`.
22+
For example, if `azureml://datastores/${{default_datastore}}/paths/{{$name}}/${{output_name}}` is used as the output path, at runtime it's resolved as a path of `azureml://datastores/workspaceblobstore/paths/<job-name>/model_path`.

0 commit comments

Comments
 (0)