File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
component-guide/experiment-trackers
how-to/popular-integrations Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ You can find the URL of the Comet experiment linked to a specific ZenML run via
142142from zenml.client import Client
143143
144144last_run = client.get_pipeline(" <PIPELINE_NAME>" ).last_run
145- trainer_step = last_run.get_step( " <STEP_NAME>" )
145+ trainer_step = last_run.steps[ " <STEP_NAME>" ]
146146tracking_url = trainer_step.run_metadata[" experiment_tracker_url" ].value
147147print (tracking_url)
148148```
Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ You can find the URL of the MLflow experiment linked to a specific ZenML run via
168168from zenml.client import Client
169169
170170last_run = client.get_pipeline(" <PIPELINE_NAME>" ).last_run
171- trainer_step = last_run.get_step( " <STEP_NAME>" )
171+ trainer_step = last_run.steps[ " <STEP_NAME>" ]
172172tracking_url = trainer_step.run_metadata[" experiment_tracker_url" ].value
173173print (tracking_url)
174174```
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ You can find the URL of the Weights & Biases experiment linked to a specific Zen
152152from zenml.client import Client
153153
154154last_run = client.get_pipeline(" <PIPELINE_NAME>" ).last_run
155- trainer_step = last_run.get_step( " <STEP_NAME>" )
155+ trainer_step = last_run.steps[ " <STEP_NAME>" ]
156156tracking_url = trainer_step.run_metadata[" experiment_tracker_url" ].value
157157print (tracking_url)
158158```
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ You can find the URL to the MLflow experiment for a ZenML run:
7171
7272``` python
7373last_run = client.get_pipeline(" <PIPELINE_NAME>" ).last_run
74- trainer_step = last_run.get_step( " <STEP_NAME>" )
74+ trainer_step = last_run.steps[ " <STEP_NAME>" ]
7575tracking_url = trainer_step.run_metadata[" experiment_tracker_url" ].value
7676```
7777
You can’t perform that action at this time.
0 commit comments