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
Hello Everyone. Is There Option To Query Tasks By Parameters Set Via


Hi @<1624941403597443072:profile|ShaggyButterfly12> , you're quite right. Currently this is not part of the interface, but you can do it as follows (assuming your projects are in the myproject project, and you're trying to filter by the value of the batch_size parameter in the General section) :

from clearml import Task

tasks = Task.query_tasks(
    project_name="myproject",
    task_filter={"hyperparams.General.batch_size.value": "128", "_allow_extra_fields_": True}
)
  
  
Posted one year ago
125 Views
0 Answers
one year ago
one year ago