deep-learning-with-python-notebooks icon indicating copy to clipboard operation
deep-learning-with-python-notebooks copied to clipboard

Minor issue in Listing 13.12: A simple LSTM-based model

Open lauchinyip opened this issue 1 week ago • 0 comments

Instead of print("Test MAE: {model.evaluate(test_dataset)[1]:.2f}") it should be: print(f"Test MAE: {model.evaluate(test_dataset)[1]:.2f}")

lauchinyip avatar Dec 10 '25 13:12 lauchinyip