Created
May 12, 2018 18:04
-
-
Save mikkokotila/8405a6ce09a6222a6f47c94e93596b4c to your computer and use it in GitHub Desktop.
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
p = {'lr': (0.8, 1.2, 3), | |
'first_neuron':[4, 8, 16, 32, 64], | |
'hidden_layers':[0, 1, 2], | |
'batch_size': (1, 5, 5), | |
'epochs': [50, 100, 150], | |
'dropout': (0, 0.2, 3), | |
'weight_regulizer':[None], | |
'emb_output_dims': [None], | |
'shape':['brick','long_funnel'], | |
'kernel_initializer': ['uniform','normal'], | |
'optimizer': [Adam, Nadam, RMSprop], | |
'losses': [binary_crossentropy], | |
'activation':[relu, elu], | |
'last_activation': [sigmoid]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment