jeffheaton / t81_558_deep_learning

T81-558: Keras - Applications of Deep Neural Networks @Washington University in St. Louis
https://sites.wustl.edu/jeffheaton/t81-558/
Other
5.72k stars 3.03k forks source link

Corrected "model.fit()" parameters #9

Closed mhmoodlan closed 6 years ago

mhmoodlan commented 6 years ago

The 1st and 2nd parameters passed to "model.fit()" were the whole dataset (x, y, ...), whereas it should be only the training part (x_train, y_train).

@jeffheaton

jeffheaton commented 6 years ago

Thank you, good catch.