Member-only story
DEEP LEARNING
Neural Networks with Memory
Understanding RNN, LSTM under 5 minutes
We always heard that Neural Networks (NNs)are inspired by biological neural networks. This huge representation was done in a fantastic way.
Figure 1 shows the anatomy of a single neuron. The central part is called the cell body where the nucleus resides. There are various wires which pass the stimulus to the cell body and few wires which send the output to the other neurons. The thickness of the dendrites implies the weight/bias/power of the stimulus. Many neurons with various cell bodies are stacked up which forms the biological neural network.
This same structure is implemented in Neural Networks. The input is passed through an activation function with weighted edges. The output is generated which can be passed to another activation function. Many activation functions can be stacked up, each of these is called a layer. And in a layer, we can have multiple neurons.