Skip to content

Instantly share code, notes, and snippets.

@thedevankit
Created May 1, 2019 16:38
Show Gist options
  • Save thedevankit/b5a5cb684b89bb11d81f70bf0e8d87f2 to your computer and use it in GitHub Desktop.
Save thedevankit/b5a5cb684b89bb11d81f70bf0e8d87f2 to your computer and use it in GitHub Desktop.
Neural netwrok.
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