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, I'M Working On A Flexible Machine Learning Pipeline Using Clearml, Covering Data Retrieval, Preprocessing, Training, And Evaluation. I Want To Add Hyperparameter Optimization (Hpo) As A Pipeline Step That Could Optimize The Preprocessing A

Hello everyone,
I'm working on a flexible machine learning pipeline using ClearML, covering data retrieval, preprocessing, training, and evaluation. I want to add hyperparameter optimization (HPO) as a pipeline step that could optimize the preprocessing and training steps (I'm using add_function_step), but I'm facing some challenges:

  • How can I integrate HPO into the ClearML pipeline in a generic way?
  • What's the best way to pass optimized parameters between steps in an adaptable pipeline?
  • How can I ensure I'm following ClearML best practices for this kind of integration?Has anyone successfully tackled this before? I'd love to hear about your experiences, particularly:
  • How you integrated HPO into a ClearML pipeline without tying it to specific parameters
  • Examples of setting up HPO as a pipeline step that works well with other steps
  • Methods for passing optimized hyperparameters between steps in a versatile pipelineAny advice or examples would be greatly appreciated. Thanks in advance for your help!
  
  
Posted 19 days ago
Votes Newest

Answers 2


Hi @<1730396272990359552:profile|CluelessMouse37> , I would suggest reviewing the relevant docs regarding pipelines & HPO and then running said examples before integrating them 🙂

None
None
None
None

I think if you run all examples and understand what the code is doing, sewing the two together should be fairly streightforward

  
  
Posted 19 days ago

thank you very much, my pipeline is already set up and works but the concern was on how integrating HPO for some of the steps within the pipeline. I will have a look on the HPO optimizer class

  
  
Posted 18 days ago
53 Views
2 Answers
19 days ago
18 days ago
Tags