As far as I am aware I have built my model however I am getting this error when I try to check it:
TypeError Traceback (most recent call last)
<ipython-input-75-480afcf9bc78> in <module>()
1 # RUN THIS CELL TO TEST YOUR MODEL. DO NOT MODIFY CONTENTS.
2 # Test model by checking how well the model generalizes using the test set.
----> 3 loss, mae, mse = model.evaluate(test_dataset, test_labels , verbose=2)
4
5 print("Testing set Mean Abs Error: {:5.2f} expenses".format(mae))
TypeError: evaluate() got an unexpected keyword argument 'verbose'
This is from the given code in the doc - my code is here: https://github.com/lilaceri/Working-with-data-/blob/main/fcc_predict_health_costs_with_regression.ipynb
Thanks!