Skip to content

Instantly share code, notes, and snippets.

@thedevankit
Created May 1, 2019 17:03
Show Gist options
  • Save thedevankit/c17d79b81c2a9cdf413e6246d706e62d to your computer and use it in GitHub Desktop.
Save thedevankit/c17d79b81c2a9cdf413e6246d706e62d to your computer and use it in GitHub Desktop.
Sigmoid function
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