Skip to content

Module 1: The Perceptron (The Single Brain Cell)

📚 Module 1: The Perceptron

Course ID: DL-401
Subject: The Single Brain Cell

Deep Learning is inspired by the human brain. To understand the brain, we must first understand the single “cell” that makes it up: the Perceptron.


🧠 Step 1: The Input (The “Senses”)

Imagine you are a single brain cell deciding if you should be happy. You have three “senses” (Inputs):

  • Sleep, Sun, and Coffee.

⚖️ Step 2: The Weight (The “Importance”)

Not all senses are equally important. You assign a Weight to each one:

  • Sleep is 0.8 (Critical).
  • Sun is 0.1 (Nice).

🚦 Step 3: The Bias & Threshold (The “On/Off Switch”)

🧩 The Analogy: The Light Switch

  • If the total score (Weighted Sum) is high enough, the cell fires (turns the light ON).

🥅 Module 1 Review

  1. Inputs (XX): The raw information (senses).
  2. Weights (WW): How much each input matters.
  3. Bias (BB): The baseline (how easy it is to fire).
  4. Output (YY): The final decision.

:::tip Slow Learner Note A single Perceptron is very simple—it can only learn straight lines. But when you stack millions of them, you get Deep Learning. :::