Skip to content

Commit 8ca2510

Browse files
committed
code
1 parent 4ce3ee8 commit 8ca2510

File tree

1 file changed

+22
-16
lines changed

1 file changed

+22
-16
lines changed

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

Lines changed: 22 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -136,30 +136,36 @@ If the `git` command isn't available on your development environment, or your tr
136136
137137
## View Git information
138138
139-
The Git information is stored in the properties for a training job. The logged information contains JSON code similar to the following example:
139+
The Git information is stored as JSON code in the properties for a training job. The logged Git information can include the following properties:
140140
141141
```json
142-
"properties": {
143-
"_azureml.ComputeTargetType": "batchai",
144-
"ContentSnapshotId": "5ca66406-cbac-4d7d-bc95-f5a51dd3e57e",
145-
"azureml.git.repository_uri": "[email protected]:azure/machinelearningnotebooks",
146-
"mlflow.source.git.repoURL": "[email protected]:azure/machinelearningnotebooks",
147-
"azureml.git.branch": "master",
148-
"mlflow.source.git.branch": "master",
149-
"azureml.git.commit": "4d2b93784676893f8e346d5f0b9fb894a9cf0742",
150-
"mlflow.source.git.commit": "4d2b93784676893f8e346d5f0b9fb894a9cf0742",
151-
"azureml.git.dirty": "True",
152-
"AzureML.DerivedImageName": "azureml/azureml_9d3568242c6bfef9631879915768deaf",
153-
"ProcessInfoFile": "azureml-logs/process_info.json",
154-
"ProcessStatusFile": "azureml-logs/process_status.json"
155-
}
142+
"azureml.git.repository_uri": "[email protected]:azure/<repo-name>",
143+
"azureml.git.branch": "<branch-name>",
144+
"azureml.git.commit": "<commit-id>",
145+
"azureml.git.dirty": "<True/False>",
146+
"mlflow.source.git.repoURL": "[email protected]:azure/<repo-name>",
147+
"mlflow.source.git.branch": "<branch-name>",
148+
"mlflow.source.git.commit": "<commit-id>",
149+
156150
```
157151
158152
You can view this information by using the Azure portal, Python SDK, or Azure CLI.
159153
160154
### Azure portal
161155
162-
In your workspace in Azure Machine Learning studio, select the experiment from the **Jobs** page and then select the job from the **Display name** column. To view the Git properties, select **Raw JSON** under **See all properties** in the **Properties** section of the **Overview** page.
156+
In your workspace in Azure Machine Learning studio, select your job from the **Jobs** page. In the **Properties** section of the job **Overview** page, select **Raw JSON** under **See all properties**.
157+
158+
In the JSON, look for the Git properties, for example:
159+
160+
```json
161+
"properties": {
162+
"mlflow.source.git.repoURL": "[email protected]:azure/azureml-examples",
163+
"mlflow.source.git.branch": "main",
164+
"mlflow.source.git.commit": "0000000000000000000000000000000000000000",
165+
"azureml.git.dirty": "False",
166+
...
167+
},
168+
```
163169
164170
### Python SDK V2
165171

0 commit comments

Comments
 (0)