z = tf.cast(z, tf.float32)
a = tf.keras.activatoins.sigmoid(z)
I got the following error:
AttributeError: module ‘tensorflow.keras’ has no attribute ‘activatoins’
Your help is much appreciated
z = tf.cast(z, tf.float32)
a = tf.keras.activatoins.sigmoid(z)
I got the following error:
AttributeError: module ‘tensorflow.keras’ has no attribute ‘activatoins’
Your help is much appreciated
Hi @Cindy_Ling ,
Please check your spelling. It is activations.sigmoid(z)
not activatoins.sigmoid(z)
Hello Kin,
Thank you so much.
I guess I needed a break, since I did the programming assignment right after watching all the videos.
Regards,
Cindy