Project - Working with Custom Loss Function

You are currently auditing this course.
6 / 6

Evaluating the Model Performance

  • Let us test the model performance by looking at the mae and loss values of the model on test data.
INSTRUCTIONS
  • Use evaluate on model and pass X_test_scaled, y_test as input arguments to the method.

    model.<< your code comes here >>(<< your code comes here >>)
    

    Observe the values of loss and mae. These values are nearly the same as those of the train and validation datasets. Also, the values are low. Hence our model hasn't been overfitted and is giving a decent performance.

Get Hint See Answer

Loading comments...