Convexity, Logistic Loss, and the Overfitting Battle
Why squared error fails for classification, implementing Binary Cross-Entropy, and fighting high variance with regularization.
May 12, 20266 min read

Search for a command to run...
Articles tagged with #learning-in-public
Why squared error fails for classification, implementing Binary Cross-Entropy, and fighting high variance with regularization.

Eliminating gradient descent bottlenecks through input normalization and feature engineering.

Moving past single-variable equations and smashing matrix dot products into NumPy to accelerate training.

Translating the calculus of partial derivatives into simultaneous parameter updates using raw NumPy.

Dissecting the Squared Error Cost Function in Linear Regression

Goals, Types, and the Lifecycle of a Model.
