Artificial Neural Network is Also known as Feed Forward Neural Network, Because it only moves forward compare to other Neural Networks.
In ANN -
There is a Input Layer which takes the Input Data.
tf.keras.layers.Dense(input_shape= (5,))
Hidden Layers, which gives Neural Network ability to learn and generalize input data.
tf.keras.layers.Dense(64, activation= 'relu')
Output Layer this layer gives the output.
tf.keras.layers.Dense(1, activation= "___")
Comments