-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Conversation
PurityFan
commented
Mar 25, 2019
•
edited
Loading
edited
- Add BOHB Advisor
- Add new advisor with new algorithm BOHB, reference paper: https://arxiv.org/abs/1807.01774
- Add MNIST example of BOHB usage
- Add related docs and links
@PurityFan I have one simple suggestion that you can change the |
We decided to change the “STEPS” uniform to “TRIAL_BUDGET” at the previous meeting. |
I can run it successfully. Hope for approval. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
doc can be further improved
I suggest that more people to review this big PR. |
for var in search_space: | ||
_type = str(search_space[var]["_type"]) | ||
if _type == 'choice': | ||
cs.add_hyperparameter(CSH.CategoricalHyperparameter( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would be better if we could leverage existing config parsing code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
BOHB needs to use the functions in ConfigSpace, this function is to convert the format represented by nni into a format that can be recognized in the ConfigSpace package. Not clear of how to leverage existing config parsing code?