top of page
Search

Artificial Neural Network (ANN)

  • Writer: Shreyansh verma
    Shreyansh verma
  • Jun 9, 2023
  • 1 min read

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


bottom of page