Skip to content

Commit e50aa6c

Browse files
committed
correction
1 parent a9793a9 commit e50aa6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/machine-learning/concept-train-model-git-integration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,12 +172,12 @@ In your workspace in Azure Machine Learning studio:
172172
After you submit a training run, a [Job](/python/api/azure-ai-ml/azure.ai.ml.entities.job) object is returned. The `properties` attribute of this object contains the logged Git information. For example, you can run the following command to retrieve the commit hash:
173173
174174
```python
175-
job.properties["azureml.git.commit"]
175+
job.properties["mlflow.source.git.commit"]
176176
```
177177
178178
### Azure CLI V2
179179
180-
You can run the `az ml job show` command with the `--query` argument to display the Git information. For example, the following query retrieves the `azureml.git.commit` property:
180+
You can run the `az ml job show` command with the `--query` argument to display the Git information. For example, the following query retrieves the `mlflow.source.git.commit` property:
181181
182182
```azurecli
183183
az ml job show --name my-job-id --query "{GitCommit:properties.azureml.git.commit} --resource-group my-resource-group --workspace-name my-workspace"

0 commit comments

Comments
 (0)