top of page
Writer's pictureShreyansh verma

Artificial Neural Network (ANN)

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= "___")



6 views0 comments

Recent Posts

See All

Comments


bottom of page