deep-learning-with-python-notebooks
deep-learning-with-python-notebooks copied to clipboard
Minor issue in Listing 13.12: A simple LSTM-based model
Instead of print("Test MAE: {model.evaluate(test_dataset)[1]:.2f}") it should be: print(f"Test MAE: {model.evaluate(test_dataset)[1]:.2f}")