Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

What algorithm is used by Auto-PyTorch #11

Closed
ashukid opened this issue Jun 27, 2019 · 4 comments
Closed

What algorithm is used by Auto-PyTorch #11

ashukid opened this issue Jun 27, 2019 · 4 comments

Comments

@ashukid
Copy link

ashukid commented Jun 27, 2019

I was reading papers on automl and architecture search. There are actually lot of ways to do so, one very obvious to train different model directly.

I was wondering what this library is using ?

@LMZimmer
Copy link
Contributor

Hello and thank you for your interest in AutoPyTorch.

There are two algorithms used: BOHB and Hyperband. BOHB utilizes Bayesian optimization and the bandit-based Hyperband and is the default for the "small_cs" and "medium_cs" config presets.

For the implementation we use the HpBandSter package.

@mlindauer
Copy link
Contributor

Hi @ashukid ,

Thank you for asking.
Our main reference is the AutoNet chapter as described in our AutoML Book:
https://www.automl.org/wp-content/uploads/2019/05/AutoML_Book_Chapter7.pdf

Previously, the name of the project was AutoNet. Since this was too generic, we changed the name to AutoPyTorch. AutoNet 2.0 in the reference mention above is indeed AutoPyTorch.

Best,
Marius

@ashukid
Copy link
Author

ashukid commented Jun 27, 2019

@mlindauer I haven't gone through the book, but I will do it very soon.
I was wondering how this algorithm is different from the one google is using (NASNet one).

@mlindauer
Copy link
Contributor

@ashukid
I think there is not only one approach Google has published in the last two years. So, there is not the one Google approach.
For the original NASNet paper, they used reinforcement learning. As Lucas pointed out, we use a complete different approach, called Bayesian Optimization and combined it with Hyperband (an iterative bandit approach). I would recommend to read Chapter 3 of the AutoML book first, if you are not familiar with the different trends in NAS:
https://www.automl.org/wp-content/uploads/2019/05/AutoML_Book_Chapter3.pdf

Best,
Marius

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants