Built a regression model from scratch - no libraries, just math, matrix ops & gradient descent.
From data leakage to production-ready design, this is how ML really works under the hood.
Final prediction: 295.92 🚀
Read: https://t.co/14qJ2SLqOo
#MachineLearning#DeepLearning
Data normalization isn’t optional - it’s what keeps gradients from exploding 🚀
Z-score standardization brings features to the same scale, stabilizing learning & speeding convergence.
Read👇
https://t.co/doHQcY2CxR
#AI#MachineLearning#DeepLearning#DataScience#Math#Python
Watching gradient descent actually learn 🔥
From random weights → near-perfect fit in ~20 epochs.
Partial derivatives isolate the blame: weight adjusts slope, bias shifts the line.
https://t.co/DH6SFOMkpF
#MachineLearning#AI#GradientDescent#Math#LearningInPublic
Backprop finally clicked 🔥
As error → 0, gradient → 0
So updates become tiny → learning slows down
Big steps when wrong, tiny steps near correct = asymptotic convergence
🔗 https://t.co/f2Nx9Gzul1
#AI#ML#DeepLearning#Backpropagation#GradientDescent
Derivative gave direction.
Tangent revealed slope.
Gradient Descent made it actionable.
+ve slope → move left
-ve slope → move right
From intuition → math → code
https://t.co/1xeu69KU8W
#MachineLearning#AI#GradientDescent#Math#LearningInPublic
Built a multi-output ML model from scratch
Biggest realizations:
• Matrix multiplication = multiple mappings
• Transpose = alignment, not a trick
• Errors > tutorials
I didn’t learn ML by reading. I learned it by breaking it.
Full journey ↓
https://t.co/8Idn6MChIo
Small bug. Big learning.
Wrong: https://t.co/A2SI2h0lIg_vector(w) + b
👉Right: add bias per prediction
Built this in my regressor from scratch →
https://t.co/F1Bx3B84SV
#MachineLearning#AI#BuildInPublic