Created
May 1, 2019 16:38
-
-
Save thedevankit/b5a5cb684b89bb11d81f70bf0e8d87f2 to your computer and use it in GitHub Desktop.
Neural netwrok.
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
from keras.models import Sequential | |
from keras.layers import Dense, Activation | |
model = Sequential([ | |
Dense(32, input_shape=(10,), activation='relu'), | |
Dense(2, activation='softmax'), | |
]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment