Closed vlawhern closed 2 years ago
Hello @vlawhern,
I am glad you found the work interesting :).
You are correct in your understanding, you would only need to use the cash_cocktail
flag. When that option is triggered everything else related to the updates for individual ingredients is ignored:
https://github.com/releaunifreiburg/WellTunedSimpleNets/blob/494c978958d1c25e347e0f744c6a26a483734a41/utilities.py#L333
What you are seeing are the default values given for the arguments. When the cash cocktail option is not enabled, you could control the activation of the different ingredients by the arguments.
Let me know if anything else is unclear :)
I ran into your paper not too long ago and found it pretty interesting, thanks for sharing the code.
I'm looking to run this on my own dataset and I'm a bit confused as to the
cash_cocktail
option inmain_experiment.py
. My impression is that this automatically turns on all the options to search for HPO but when I run the code I get output that looks like this:It looks like the options aren't being used? e.g.
'use_swa': [False], 'use_se': [False], 'use_lookahead': [False],...
I guess to rephrase the question: if one were to use your code on their private dataset, what options do you need to pass in to ensure that you are doing the full HPO? is it just the
cash_cocktail
flag?