-
Notifications
You must be signed in to change notification settings - Fork 47
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
Select: custom minimize method #1264
Conversation
Codecov ReportAttention:
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## develop #1264 +/- ##
===========================================
+ Coverage 75.75% 81.35% +5.59%
===========================================
Files 148 148
Lines 12075 12088 +13
===========================================
+ Hits 9148 9834 +686
+ Misses 2927 2254 -673 ☔ View full report in Codecov by Sentry. |
I tested it with doc/example/model_selection.ipynb and SacessOptimizer and it worked well after #1265. from pypesto.optimize.ess import SacessOptimizer
sacess = SacessOptimizer(num_workers=4, max_walltime_s=10)
best_models = pypesto_select_problem_4.select_to_completion(
method=Method.FORWARD,
criterion=Criterion.AICC,
select_first_improvement=True,
startpoint_latest_mle=True,
criterion_threshold=10,
model_problem_options={
'minimize_method': sacess.minimize,
}
) Thanks! |
Co-authored-by: Daniel Weindl <dweindl@users.noreply.github.com>
Great! Thanks for the example and improvements. |
No description provided.