Skip to content

Commit

Permalink
Merge pull request maxpumperla#270 from abhieshekumar/fix-readMe
Browse files Browse the repository at this point in the history
Fixing parenthesis
  • Loading branch information
maxpumperla authored Oct 2, 2020
2 parents d8da28e + 26789fd commit 947d8d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def create_model(x_train, y_train, x_test, y_test):
model.add(Dropout(0.2))
model.add(Dense(512))
model.add(Activation('relu'))
model.add(Dropout(0.2)
model.add(Dropout(0.2))
model.add(Dense(10))
model.add(Activation('softmax'))

Expand Down

0 comments on commit 947d8d2

Please sign in to comment.