Advertisement
Guest User

Untitled

a guest
Aug 20th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. model = Sequential()
  2. model.add(Dense(8, input_dim=40, activation='relu'))
  3. model.add(Dense(33, activation='softmax'))
  4. model.compile(loss='categorical_crossentropy', optimizer='adam', metrics=['accuracy'])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement