Skip to content

Instantly share code, notes, and snippets.

@crawftv
Last active April 11, 2019 03:56
Show Gist options
  • Save crawftv/683f599dd31d5ec02877d0734beccc4f to your computer and use it in GitHub Desktop.
Save crawftv/683f599dd31d5ec02877d0734beccc4f to your computer and use it in GitHub Desktop.
Skopt Tutorial - Imports
#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