Skip to content

Instantly share code, notes, and snippets.

@Rendiere
Last active May 15, 2019 15:03
Show Gist options
  • Save Rendiere/46d138afb5487a5ae7671dda34de1ad7 to your computer and use it in GitHub Desktop.
Save Rendiere/46d138afb5487a5ae7671dda34de1ad7 to your computer and use it in GitHub Desktop.
Convergence Plot Callback for skopt
from skopt import gp_minimize
from skopt.plots import plot_convergence
from IPython.display import clear_output
class ConvergencePlotCallback(object):
def __init__(self, figsize=(12,8)):
self.fig = plt.figure(figsize=figsize)
def __call__(self, res):
clear_output(wait=True)
plot_convergence(res)
plt.show()
plot_callback = ConvergencePlotCallback(figsize=(12,8))
gp_results = gp_minimize(objective, space, n_calls=10, random_state=2019, callback=[plot_callback])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment