Skip to content

Instantly share code, notes, and snippets.

@josete89
Created May 25, 2018 09:18
Show Gist options
  • Save josete89/4d5534b3be4fb12980f06281590f77e2 to your computer and use it in GitHub Desktop.
Save josete89/4d5534b3be4fb12980f06281590f77e2 to your computer and use it in GitHub Desktop.
model = models.Sequential()
model.add(layers.Dense(16, activation='relu', input_shape=(10000,)))
model.add(layers.Dropout(0.5))
model.add(layers.Dense(16, activation='relu'))
model.add(layers.Dropout(0.5))
model.add(layers.Dense(1, activation='sigmoid'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment