clovaai / wsolevaluation

Evaluating Weakly Supervised Object Localization Methods Right (CVPR 2020)
MIT License
332 stars 55 forks source link

where are you doing hyperparameter search? #8

Closed umairjavaid closed 4 years ago

umairjavaid commented 4 years ago

As mentioned in the paper, where is the code for hyperparameter search?

coallaoh commented 4 years ago

We do not have any code for it. In fact, the random hyperparameter search algorithm is too simple to write a code ;)

You can generate configs (arguments) for train.py with your favourite random number generator according to the search space indicated in Table 5 (appendix). For example, we have used the random number generators in Google Sheets to generate the configs. You can also use Numpy random number generators.

Afterwards, you choose the configs with the best model performance as your final model, which again does not really require much coding.