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
Is There Some Example Of How To Develop A Hpo In A Pipeline Setup Where Each Hyperparameter Setup Is Each Own Step Again? Should We First Mimick A Base Task For Example?

Is there some example of how to develop a HPO in a pipeline setup where each hyperparameter setup is each own step again? Should we first mimick a base task for example?

  
  
Posted one year ago
Votes Newest

Answers 4


I'm now thinking I need some main process that runs first a base_template task such that all gets initialized well. In the same process start the HPO which will add subtasks to the queue. This main process (also a task) will then wait until all other tasks (i.e. hyperparameter setups) have completed before wrapping up and reporting back.

  
  
Posted one year ago

Hi @<1577468611524562944:profile|MagnificentBear85> , can you please elaborate a bit on how exactly you want to stricture this?

  
  
Posted one year ago

Thanks for responding quickly. For this specific use case I need a regression sklearn model (trained in 10-fold CV) that I want to hyperoptimize using optuna. As my datasets are updated regularly, I'd like to define all of this in a pipeline such that I can easily run everything again once the data is changed.

  
  
Posted one year ago

Does that make sense?

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