Last active
July 5, 2018 23:46
-
-
Save spicyramen/9ec51ab375b132f4220f4ad576837cf6 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
model = Sequential() | |
model.add(Dense(12, input_dim=8, init='uniform', activation='relu')) | |
model.add(Dense(8, init='uniform', activation='relu')) | |
model.add(Dense(1, init='uniform', activation='sigmoid')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment