Skip to content

Instantly share code, notes, and snippets.

@thedevankit
Created May 1, 2019 17:05
Show Gist options
  • Save thedevankit/36dc88a5b6bde936fbad511ccfe44933 to your computer and use it in GitHub Desktop.
Save thedevankit/36dc88a5b6bde936fbad511ccfe44933 to your computer and use it in GitHub Desktop.
Activation function :RELU
model = Sequential([
 Dense(5, input_shape=(3,), activation='relu'),
 Dense(2, activation='relu'),
 ])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment