You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PR #224 implements a parameter to ask() which allows optimizers to suggest trials in a batch manner. Currently the implementations just do this with a sequential call, i.e. calling ask() on itself n times.
I think SMAC might have some batching protocol and NEP's file locking mechanism is definitely slower when it needs to lock n times for no good reason. As for Optuna, I have no idea but would need some investigation.
The text was updated successfully, but these errors were encountered:
PR #224 implements a parameter to
ask()
which allows optimizers to suggest trials in a batch manner. Currently the implementations just do this with a sequential call, i.e. callingask()
on itselfn
times.I think SMAC might have some batching protocol and NEP's file locking mechanism is definitely slower when it needs to lock
n
times for no good reason. As for Optuna, I have no idea but would need some investigation.The text was updated successfully, but these errors were encountered: