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
Unanswered
Hi All, I Want To Ask, How I Can Get Commit Id From Compiled Task. I Tried Get_Script Method In Task Class, But There Only Info About Branch (I Think Because I Used Latest Commit In Branch), From Code I Understood That Commit == Version_Num In Task.Script


This is what I just tested now for a task with a commit in the webUI:

from clearml import Task

task = Task.get_task(task_id="<TASK_ID>")

print(task.data.script.version_num)

This returned the commit ID I see in the webUI.

Are you sure there is a commit ID in the UI? Are you sure you're fetching the correct task?

  
  
Posted one day ago
1 Views
0 Answers
one day ago
15 hours ago