-
Notifications
You must be signed in to change notification settings - Fork 11
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
Hyperparameter tuning #204
Conversation
After messing with raytune for a while, I'm not convinced it's the best solution for regularizer strength and learning rate tuning. It requries a lot of overhead to convert training and crossval objects into ray format and adds big dependencies. Built-in pytorch schedulers can probably do much of the same without refactoring code. Raytune stack tracebacks are also pretty unhelpful, and their API seems to be changing frequently. I'm going to look into a simpler approach in pytorch and only come back to this if we need it. Will leave branch open for now. |
Closing as out of scope with v0.3 redesign |
Implements automated determination of regularizer strengths and learning rate within a cross validation loop using
ray tune
.CrossValidate
tune
tune
Closes #135