Skip to content

Commit a05f3e7

Browse files
authored
Merge pull request #173 from J-Silvestre/patch-3
Update reference-migrate-sdk-v1-mlflow-tracking.md
2 parents 851e142 + 67c8241 commit a05f3e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/machine-learning/reference-migrate-sdk-v1-mlflow-tracking.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -388,13 +388,13 @@ run_id = finished_mlflow_run.info.run_id
388388
389389
## View run artifacts
390390
391-
To view the artifacts of a run, use [MlFlowClient.list_artifacts](https://mlflow.org/docs/latest/python_api/mlflow.tracking.html#mlflow.tracking.MlflowClient.list_artifacts):
391+
To view the artifacts of a run, use [MlFlowClient.list_artifacts](https://mlflow.org/docs/latest/python_api/mlflow.artifacts.html#mlflow.artifacts.list_artifacts):
392392
393393
```python
394394
client.list_artifacts(finished_mlflow_run.info.run_id)
395395
```
396396
397-
To download an artifact, use [mlflow.artifacts.download_artifacts](https://www.mlflow.org/docs/latest/python_api/mlflow.tracking.html#mlflow.tracking.MlflowClient.download_artifacts):
397+
To download an artifact, use [mlflow.artifacts.download_artifacts](https://mlflow.org/docs/latest/python_api/mlflow.artifacts.html#mlflow.artifacts.download_artifacts):
398398
399399
```python
400400
mlflow.artifacts.download_artifacts(run_id=finished_mlflow_run.info.run_id, artifact_path="Azure.png")

0 commit comments

Comments
 (0)