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
Profile picture
PricklyJellyfish35
Moderator
1 Question, 9 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

9 × Eureka!
0 Votes
19 Answers
767 Views
0 Votes 19 Answers 767 Views
Hi, Is there a way to log OmegaConf configuration with resolve=False ? So I won't have to remember and change all of my variable interpolation.
3 years ago
0 Hi, Is There A Way To Log

AgitatedDove14 TimelyPenguin76 , any idea?

3 years ago
0 Hi, Is There A Way To Log

Hi AgitatedDove14 ,
In OmegaConf.to_container (or yaml) there is a resolve argument "if resolve is set to True, interpolations will be resolved during conversion". Currently in clearml you save the argument after resolving and I'm looking to save them explicitly so the user will not forget to change some dependencies.

3 years ago
0 Hi, Is There A Way To Log

I understand but a user who runs an experiment from the server may change one argument and not its dependency which may result in error in the good case or undesirable run in the worst case. Maybe you can add an argument to control it.

3 years ago
0 Hi, Is There A Way To Log

Maybe add a configurable argument that will control the resolving. What is the current process before saving the configuration? Do you directly save the omegadict or first parse it as dictionary? (and no problem I'll post)

3 years ago
0 Hi, Is There A Way To Log

Sounds good but the resolve config should be read only. Practically, in PatchHydra._register_omegaconf you can use OmegaConf.to_yaml(config, resolve=PatchHydra._log_before_resolve) without hydra key. WDYT?

3 years ago
0 Hi, Is There A Way To Log

AgitatedDove14
I have the configuration after the overrides.

3 years ago
0 Hi, Is There A Way To Log

AgitatedDove14 , done

3 years ago
0 Hi, Is There A Way To Log

Hi TimelyPenguin76
Yes, but the variables were interpolated.

3 years ago
0 Hi, Is There A Way To Log

I think it will be confusing to save both

3 years ago