In this lab I am keep getting error for the following code, I don’t where I did wrong, the code seems correct to me.
{mentor edit: code removed}
Compare to the example, I found in the example, instead of:
tf.keras.layers.Dense(units=25, activation=‘relu’),
It only used 25 without units, is this because the dense function by default has 3 parameters and without call the units, the 25 will auto fits in the first parameter?
Dense(25, activation=‘relu’, name = “L1”)
Also where did I do wrong?