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, Not Sure If I'M Doing Something Wrong Or I Found A Bug. When I Try To Overwrite Some Parameters In A Cloned Task Using


I just tried and everything works.

I run this for the template task:

` from clearml import Task

task = Task.init(project_name="Examples", task_name="task with connected dict")

period = {"start": "2020-01-01 00:00", "end": "2020-12-31 23:00"}

task.connect(period, name="period") `

and this for the clone one:

` from clearml import Task

template_task = Task.get_task(task_id="<Your template task id>")
cloned_task = Task.clone(source_task=template_task,
name=template_task.name+' for params', parent=template_task.id)
cloned_task_parameters = cloned_task.get_parameters()

override with random samples form grid

for k in cloned_task_parameters.keys():
cloned_task_parameters[k] = "2020-01-01 00:56"

put back into the new cloned task

cloned_task.set_parameters(cloned_task_parameters) `

  
  
Posted 2 years ago
98 Views
0 Answers
2 years ago
one year ago