Skip to content

Commit f121610

Browse files
committed
Merge branch 'master' of https://github.com/lukas/ml-class
2 parents 14d3a7d + a88f4dd commit f121610

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

keras-perceptron/perceptron-single.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
model=Sequential()
2424
model.add(Flatten(input_shape=(img_width,img_height)))
2525
model.add(Dense(1))
26-
model.compile(loss='mse'b, optimizer='adam',
26+
model.compile(loss='mse', optimizer='adam',
2727
metrics=['binary_accuracy'])
2828

2929
# Fit the model

0 commit comments

Comments
 (0)