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 #10

Closed mhmoodlan closed 6 years ago

mhmoodlan commented 6 years ago

Just like #9 I've noticed that wrong parameters were passed to "model.fit()" in many notebooks: 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).

List of affected notebooks:

  1. t81_558_class5_class_reg.ipynb
  2. t81_558_class6_backpropagation.ipynb
  3. t81_558_class8_kaggle.ipynb
  4. t81_558_class9_regularization.ipynb
jeffheaton commented 6 years ago

Thank you.