Skip to content
Related Articles
Open in App
Not now

Related Articles

Difference between ANN and BNN

Improve Article
Save Article
  • Difficulty Level : Basic
  • Last Updated : 10 Jan, 2023
Improve Article
Save Article

Do you ever think of what it’s like to build anything like a brain, how these things work, or what do they do? Let us look at how nodes communicate with neurons and what are some differences between artificial and biological neural networks.

1. Artificial Neural Network : Artificial Neural Network (ANN) is a type of neural network which is based on a Feed-Forward strategy. It is called this because they pass information through the nodes continuously till it reaches the output node. This is also known as the simplest type of neural network. Some advantages of ANN :

  • Ability to learn irrespective of the type of data (Linear or Non-Linear).
  • ANN is highly volatile and serves best in financial time series forecasting.

Some disadvantages of ANN :

  • The simplest architecture makes it difficult to explain the behavior of the network.
  • This network is dependent on hardware.

2. Biological Neural Network : Biological Neural Network (BNN) is a structure that consists of Synapse, dendrites, cell body, and axon. In this neural network, the processing is carried out by neurons. Dendrites receive signals from other neurons, Soma sums all the incoming signals and axon transmits the signals to other cells. Some advantages of BNN :

  • The synapses are the input processing element.
  • It is able to process highly complex parallel inputs.

Some disadvantages of BNN :

  • There is no controlling mechanism.
  • Speed of processing is slow being it complex.

Differences between ANN and BNN :

ParametersANNBNN
Structure 

input

weight

output

hidden layer

dendrites

synapse

axon

cell body

Learningvery precise structures and formatted datathey can tolerate ambiguity
Processor

complex

high speed

one or a few

simple

low speed

large number

Memory 

separate from a processor

localized

non-content addressable

integrated into processor 

distributed

content-addressable

Computing

centralized

sequential

stored programs

distributed

parallel

self-learning

Reliabilityvery vulnerablerobust
Expertise

numerical and symbolic

manipulations

perceptual 

problems

Operating Environment

well-defined

well-constrained

poorly defined

un-constrained

Fault Tolerancethe potential of fault toleranceperformance degraded even on partial damage
My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!