Thanks, @<1523701070390366208:profile|CostlyOstrich36> .
If I use Task.current_task()
, I then get a task object back that looks like <clearml.task.Task object at 0x7f7723b90a00>
. How does one get the url from this?
I think I found it: None
Will this work for pipelines too, which are also Tasks, right?
Should work if you fetch the Task object in the pipeline step itself
For reference for anyone else, this is what I did:
current_task = Task.current_task()
model_run_url = Task.get_task_output_log_web_page(
task_id=current_task.id,
project_id="abc")