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
A workflow we should support is the ability to continue a previous exploration. This can be done once Libensemble/libensemble#1041 is merged.
Apart from resuming an old exploration, this would allow for workflows such as
exp=Exploration(
generator=gen,
evaluator=ev,
max_evals=1000,
)
# Run the first 100 evaluationsexp.run(n_evals=100)
# Do something (e.g., look at surrogate model, change hyperparameters, ...)# Run the next 100 evaluationsexp.run(n_evals=100)
# etc.
The text was updated successfully, but these errors were encountered:
A workflow we should support is the ability to continue a previous exploration. This can be done once Libensemble/libensemble#1041 is merged.
Apart from resuming an old exploration, this would allow for workflows such as
The text was updated successfully, but these errors were encountered: