Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hi There, I Want To Get The Urls That Are Generated For The Results And Pipeline Pages, As Are Logged Here, As I Want To Use These Elsewhere To Reference The Specific Pages. How Can I Get These Generated Urls From A Currently Running Pipeline?

Hi there, I want to get the URLs that are generated for the results and pipeline pages, as are logged here, as I want to use these elsewhere to reference the specific pages. How can I get these generated URLs from a currently running pipeline?
image

  
  
Posted one year ago
Votes Newest

Answers 4


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?

  
  
Posted one year ago

I think I found it: None

Will this work for pipelines too, which are also Tasks, right?

  
  
Posted one year ago

Should work if you fetch the Task object in the pipeline step itself

  
  
Posted one year ago

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")
  
  
Posted one year ago
1K Views
4 Answers
one year ago
one year ago
Tags