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 Quick Question: Does Task.Connect_Configuration Support Omegaconf Dictconfig Objects? Ie. Can I Do:

Hi quick question: does Task.connect_configuration support OmegaConf DictConfig objects?
ie. Can I do:
config = train_task.connect_configuration(OmegaConf.load(config_path))or should I do:
config = OmegaConf.load(train_task.connect_configuration(config_path))

  
  
Posted one year ago
Votes Newest

Answers 3


JitteryCoyote63 , I think so.

config = OmegaConf.load(train_task.connect_configuration(config_path))

Should work

  
  
Posted one year ago

Hi CostlyOstrich36 , I am not using Hydra, only OmegaConf, so you mean just calling OmegaConf.load should be enough?

  
  
Posted one year ago

ClearML should log all OmegaConf automatically according to this: https://clear.ml/docs/latest/docs/fundamentals/hyperparameters#hydra

Might as well take a look at this example as well 🙂
https://github.com/allegroai/clearml/blob/master/examples/frameworks/hydra/hydra_example.py

  
  
Posted one year ago
537 Views
3 Answers
one year ago
one year ago
Tags