Enforce certain params in non-grid-search sweeps? #2809
-
I'm wondering if there's a way to make sure that certain parameters are tried out in sweeps. This may be more of an Optuna/Ax question, and it might be less general than I'm currently thinking but:
|
Beta Was this translation helpful? Give feedback.
Answered by
odelalleau
Nov 30, 2023
Replies: 1 comment 1 reply
-
I think you'd need to implement your own sweeper that would be a wrapper on top of an existing sweeper to automatically "expand" the sweep space the way you want (through this new sweeper config). I'm not super familiar with plugins though, so there might be another way... |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
colobas
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think you'd need to implement your own sweeper that would be a wrapper on top of an existing sweeper to automatically "expand" the sweep space the way you want (through this new sweeper config). I'm not super familiar with plugins though, so there might be another way...