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, I Have A Question Regarding Optimization Task: I Want To Run A Standard Optimization Process And I Want To Tag All The Ran Tasks From The Optimization With A Common Tag And Also Set A Unique Tag For Each Task How Can I Do That?

Hi,
I have a question regarding optimization task:
I want to run a standard optimization process and I want to tag all the ran tasks from the optimization with a common tag and also set a unique tag for each task
How can I do that?

  
  
Posted one year ago
Votes Newest

Answers 4


    project_name=project_name,
    task_name=task_name,
    task_type=Task.TaskTypes.optimizer,
    reuse_last_task_id=False,
)

an_optimizer = HyperParameterOptimizer(
    base_task_id=base_task_id,
    hyper_parameters=[...],
        objective_metric_title="",
        objective_metric_series="",
        objective_metric_sign="max",
        optimizer_class=aSearchStrategy,
        execution_queue=execution_queue,
        spawn_project=None,
        save_top_k_tasks_only=None,
        max_iteration_per_job=1,
        total_max_jobs=max_jobs,
        max_number_of_concurrent_tasks=max_concurrent,
    )
    an_optimizer.start_locally()
  
  
Posted one year ago

Hi @<1643060807786827776:profile|WorriedPeacock92> , you mean like this?
None

  
  
Posted one year ago

Yes
But I want to verify how I can add a specific tag for each task run in the optimization task

  
  
Posted one year ago

What do you mean by verify? How are you currently running your HPO?

  
  
Posted one year ago
744 Views
4 Answers
one year ago
one year ago
Tags