mrdbourke / tensorflow-deep-learning

All course materials for the Zero to Mastery Deep Learning with TensorFlow course.
https://dbourke.link/ZTMTFcourse
MIT License
5.14k stars 2.53k forks source link

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

Open jhchang opened 1 year ago

jhchang commented 1 year ago

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.