Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/book/component-guide/experiment-trackers/comet.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ You can find the URL of the Comet experiment linked to a specific ZenML run via
from zenml.client import Client

last_run = client.get_pipeline("<PIPELINE_NAME>").last_run
trainer_step = last_run.get_step("<STEP_NAME>")
trainer_step = last_run.steps["<STEP_NAME>"]
tracking_url = trainer_step.run_metadata["experiment_tracker_url"].value
print(tracking_url)
```
Expand Down
2 changes: 1 addition & 1 deletion docs/book/component-guide/experiment-trackers/mlflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ You can find the URL of the MLflow experiment linked to a specific ZenML run via
from zenml.client import Client

last_run = client.get_pipeline("<PIPELINE_NAME>").last_run
trainer_step = last_run.get_step("<STEP_NAME>")
trainer_step = last_run.steps["<STEP_NAME>"]
tracking_url = trainer_step.run_metadata["experiment_tracker_url"].value
print(tracking_url)
```
Expand Down
2 changes: 1 addition & 1 deletion docs/book/component-guide/experiment-trackers/wandb.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ You can find the URL of the Weights & Biases experiment linked to a specific Zen
from zenml.client import Client

last_run = client.get_pipeline("<PIPELINE_NAME>").last_run
trainer_step = last_run.get_step("<STEP_NAME>")
trainer_step = last_run.steps["<STEP_NAME>"]
tracking_url = trainer_step.run_metadata["experiment_tracker_url"].value
print(tracking_url)
```
Expand Down
2 changes: 1 addition & 1 deletion docs/book/how-to/popular-integrations/mlflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ You can find the URL to the MLflow experiment for a ZenML run:

```python
last_run = client.get_pipeline("<PIPELINE_NAME>").last_run
trainer_step = last_run.get_step("<STEP_NAME>")
trainer_step = last_run.steps["<STEP_NAME>"]
tracking_url = trainer_step.run_metadata["experiment_tracker_url"].value
```

Expand Down