Created
June 28, 2018 00:09
-
-
Save WillKoehrsen/76312eb445f52dd18eb066e489636c6a 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
# Dataframe of results from optimization | |
tpe_results = pd.DataFrame({'loss': [x['loss'] for x in tpe_trials.results], | |
'iteration': tpe_trials.idxs_vals[0]['x'], | |
'x': tpe_trials.idxs_vals[1]['x']}) | |
tpe_results.head() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment