Learning Progress
0% Complete
Lesson 1: What is an Artificial Neuron?
Not StartedBiological vs Artificial: Just like neurons in your brain process information from your senses, artificial neurons process data. Think of it as a tiny decision-making unit.
The Basic Concept: An artificial neuron receives inputs (like numbers or data), processes them using weights and a bias, and produces an output. It is the fundamental building block of neural networks and deep learning.
Real-World Example: Imagine deciding whether to buy a product. You consider price (input 1), quality (input 2), and reviews (input 3). Each factor has different importance (weights) to you. The neuron does the same thing with data.
Key Components:
- Inputs: The data fed into the neuron (x1, x2, x3, etc.)
- Weights: How important each input is (w1, w2, w3, etc.)
- Bias: A constant value that helps adjust the output
- Activation Function: Decides if the neuron should "fire" or activate
- Output: The result after processing