Created
July 3, 2018 15:37
-
-
Save WillKoehrsen/f4255e5a655fba996f9e1d2c6db9840e to your computer and use it in GitHub Desktop.
This file contains hidden or 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 hyperopt import fmin | |
MAX_EVALS = 500 | |
# Optimize | |
best = fmin(fn = objective, space = space, algo = tpe.suggest, | |
max_evals = MAX_EVALS, trials = bayes_trials) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment