train_model:
main: train
flags:
lr: 1e-3
bs: 256
...
optim: 'adam'
train_model_but_small_difference:
main: train
flags:
lr: 1e-3
bs: 256
...
optim: 'SGD'
Following Issue:
Let’s assume I have some different operations for which most of the flags are exactly the same, e.g. I want to have similar model structure etc. but just have different loss functions (and maybe 2 or three other flags such that we need different operations). Is there a possiblity to have shared flags for this subset of models? → shared flags for lr
, bs
etc. such that I have to only change it once and see the effect on multiple operations