Skip to content

Commit feb44ad

Browse files
committed
fixed missing parenthesis in README
1 parent 3108e91 commit feb44ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ model.add(Dense(20, 64, init='uniform', activation='tanh'))
5757
model.add(Dropout(0.5))
5858
model.add(Dense(64, 64, init='uniform', activation='tanh'))
5959
model.add(Dropout(0.5))
60-
model.add(Dense(64, 1, init='uniform', activation='softmax')
60+
model.add(Dense(64, 1, init='uniform', activation='softmax'))
6161

6262
sgd = SGD(lr=0.1, decay=1e-6, momentum=0.9, nesterov=True)
6363
model.compile(loss='mean_squared_error', optimizer=sgd)

0 commit comments

Comments
 (0)