About Lesson
-
Neurons (Biological Perspective):
- Neurons are the fundamental building blocks of the nervous system in living organisms, including humans.
- Each neuron has three main components:
- Cell Body (Soma): The central part of the neuron that contains the nucleus and other essential organelles. It processes incoming signals.
- Dendrites: Branch-like structures extending from the cell body. Dendrites receive signals from other neurons or sensory receptors.
- Axon: A long, slender projection that carries electrical impulses away from the cell body toward other neurons or target cells.
- Neurons communicate through electrical impulses (action potentials) that travel along their axons.
-
Artificial Neurons (in Neural Networks):
- In artificial neural networks (ANNs), we model neurons inspired by biological ones.
- Each artificial neuron (also called a perceptron) has:
- Inputs: Analogous to dendrites. These are numerical values representing features or inputs from the previous layer.
- Weights: Similar to synaptic strengths. Weights determine the importance of each input.
- Activation Function: Analogous to the cell body. It processes the weighted sum of inputs and determines the neuron’s output.
- Output: Analogous to the axon. It’s the result of applying the activation function.
- Artificial neurons work together in layers to process information and make predictions.
-
Neural Networks:
- A neural network comprises interconnected layers of artificial neurons.
- Common types of layers:
- Input Layer: Receives raw data or features.
- Hidden Layers: Process intermediate representations.
- Output Layer: Produces the final prediction or classification.
- Signals (input data) flow forward through the layers, undergoing transformations.
- Learning occurs by adjusting weights during training (e.g., using backpropagation).
-
Signals and Activation:
- When a signal (input) reaches an artificial neuron:
- The weighted sum of inputs is computed:
text{weighted sum} = sum_{i=1}^{n} w_i cdot x_i
- The activation function is applied:
text{output} = f(text{weighted sum})
- The weighted sum of inputs is computed:
- Common activation functions include ReLU (Rectified Linear Unit), sigmoid, and tanh.
- When a signal (input) reaches an artificial neuron:
-
Deep Learning:
- Deep neural networks (DNNs) have multiple hidden layers.
- Deep learning leverages these architectures for tasks like image recognition, natural language processing, and more.
Remember, both biological and artificial neurons play crucial roles in understanding cognition, learning, and problem-solving.
Join the conversation