Last active
April 11, 2019 03:56
-
-
Save crawftv/683f599dd31d5ec02877d0734beccc4f to your computer and use it in GitHub Desktop.
Skopt Tutorial - Imports
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
#imports we know we'll need | |
import skopt | |
# !pip install scikit-optimize if necessary | |
from skopt import gbrt_minimize, gp_minimize | |
from skopt.utils import use_named_args | |
from skopt.space import Real, Categorical, Integer | |
import keras | |
from keras.models import Sequential | |
from keras.layers import Dense | |
import tensorflow | |
from tensorflow.python.keras import backend as K |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment