Neuron (= Linear + Activation) Introduction - Python Automation and Machine Learning for ICs - - An Online Book - |
||||||||
Python Automation and Machine Learning for ICs http://www.globalsino.com/ICs/ | ||||||||
Chapter/Index: Introduction | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | Appendix | ||||||||
================================================================================= In the human brain, neurons are the basic building blocks of the nervous system, and they communicate with each other through electrical and chemical signals:
The neural network in a human brain has a vast number of neurons (estimated around 86 billion) and intricates patterns of connectivity. The neural networks in artificial intelligence are inspired by the structure and function of the biological brain but are not identical to it. They are designed for specific computational tasks and may differ in their architecture and mechanisms from biological neural networks. The equation "Neuron = linear + activation" refers to a simplified representation of a single artificial neuron in a neural network. In neural networks, the basic building block is often called a neuron or a node. The equation breaks down the computation that occurs within a neuron into two main steps: a linear transformation followed by an activation function.
------------------------------- [3732a] where, are the weights. are the input values. is the bias. is the number of inputs. ------------------------------ [3732b] where, is the activation function. Therefore, the overall equation is: Neuron = activation(linear) ----------------------------- [3732c] This process is repeated for each neuron in a neural network, and the network learns to map input data to desired output through the adjustment of weights and biases during training. ============================================
|
||||||||
================================================================================= | ||||||||
|
||||||||