Created
May 1, 2019 17:03
-
-
Save thedevankit/c17d79b81c2a9cdf413e6246d706e62d to your computer and use it in GitHub Desktop.
Sigmoid function
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
model = Sequential([ | |
Dense(5, input_shape=(3,), activation='relu'), | |
Dense(2, activation='sigmoid'), | |
]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment