mrdbourke / tensorflow-deep-learning

All course materials for the Zero to Mastery Deep Learning with TensorFlow course.

Home Page:https://dbourke.link/ZTMTFcourse

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Code typo in notebook tensorflow-deep-learning/01_neural_network_regression_in_tensorflow.ipynb

jhchang opened this issue · comments

Under the section titled "Comparing results", the code below:
model_results = [["model_1", mae_1, mse_1], ["model_2", mae_2, mse_2], ["model_3", mae_3, mae_3]]
should be changed to
model_results = [["model_1", mae_1, mse_1], ["model_2", mae_2, mse_2], ["model_3", mae_3, mse_3]]
This change would properly reflect the mse for the third model instead of showing the mae twice.