Skip to content

Instantly share code, notes, and snippets.

@sparkingdark
Created January 12, 2020 11:44
Show Gist options
  • Save sparkingdark/555809d13436d08ad135f4d61144e9da to your computer and use it in GitHub Desktop.
Save sparkingdark/555809d13436d08ad135f4d61144e9da to your computer and use it in GitHub Desktop.
from keras.layers import Dense
from keras.models import Sequential
model=Sequential()
model.add(Dense(100))
model.add(Dense(50))
model.add(Dense(1))
model.compile()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment