Last active
May 15, 2019 15:03
-
-
Save Rendiere/46d138afb5487a5ae7671dda34de1ad7 to your computer and use it in GitHub Desktop.
Convergence Plot Callback for skopt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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