Hi, im getting this error
AttributeError Traceback (most recent call last)
in
----> 1 utils.test_final_model(final_model)
~/work/release/W1_Assignment/utils.py in test_final_model(final_model)
273 {
274 “name”: “layer_3_activation_check”,
→ 275 “result”: test_output.layers[4].activation,
276 “expected”: tf.keras.activations.sigmoid,
277 “error_message”: ‘wine_quality layer has an incorrect activation. Please check implementation.’
AttributeError: ‘NoneType’ object has no attribute 'layers
from what the error message says, the error would be that the activation function of wine_quality is not correct, but that line of code, according to the statement, does not require defining the activation. I hope you can help me, thank you!