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

Hello everyone.
Is there option to query tasks by parameters set via task.update_parameters ?
I assume that I need to pass certain arg into Task.query_tasks , but I didn't find from docs which one.

  
  
Posted 11 months ago
Votes Newest

Answers 3


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 11 months ago

Of sorts, but the server processes it and modifies the query

  
  
Posted 11 months ago

is this mongodb type of filtering?

  
  
Posted 11 months ago
685 Views
3 Answers
11 months ago
11 months ago
Tags