fork download
  1. from keras.models import Sequential
  2. from keras.layers import Dense, Activation
  3. model = Sequential([
  4. Dense(32, input_dim=784),
  5. Activation('relu'),
  6. Dense(10),
  7. Activation('softmax'),
  8. ])
Success #stdin #stdout 2.71s 311976KB
stdin
Standard input is empty
stdout
Standard output is empty