A neuron in a neural network uses this equation:
y = w * x + b
Because real life usually has a starting value, not zero.
Think of it as:
Output = (rate Γ amount) + base value
Simple Real-Life Examples
- Taxi Fare π
- $5 per km
- $20 base fare
fare = 5 * km + 20
Even at 0 km, you still pay $20 β thatβs b.
- Salary π°
- $10 per hour
- $100 fixed pay
salary = 10 * hours + 100
Work 0 hours? You still earn $100.
What This Means in Deep Learning
x β input
w β importance (rate)
b β starting value
y β output
Without + b, the model is forced to start at zero, which doesnβt match real data.
Top comments (0)