composable config (multiple config files, each with a different section) #560
Replies: 3 comments 4 replies
-
From what I understand you want to perform a grid search on the combination. While multiple seeds is not supported yet, you can still try looking into the benchmarking script https://openvinotoolkit.github.io/anomalib/guides/benchmarking.html. Let me know if this works for you. |
Beta Was this translation helpful? Give feedback.
-
Thanks @ashwinvaidya17, I will check that. (Haven't read yet) Although I think the feature would still be useful for the sake of maintenance of these config files. |
Beta Was this translation helpful? Give feedback.
-
perhaps this feature -- composing a config file from multiple (and smaller) config files -- could go along with #827? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Disclaimer: I tried to create a discussion about this to first check if the feature already exists but the "new" button was not working.
problem
Consider this scenario: I want to test 2 hyperparameter sets on 2 models on 2 datasets, each experiment with 5 seeds, which gives me 2 x 2 x 2 x 5 = 40 config files -- and I do want to keep files for the sake of keeping it easily reproducible.
solution
Instead of generating 8 conffig files, I would like to put the each section of the config, so I would have 2 + 2 + 2 + 5 = 11 config files, and I would make calls to the cli with the cross product combination of files at the command line level.
alternative
Generate temporary file with the full config from the pieces as described above.
Beta Was this translation helpful? Give feedback.
All reactions