seniorSupervised Learning
What is loss function optimization landscape in supervised learning?
Updated May 17, 2026
Short answer
The optimization landscape is the shape of the loss function surface that determines how easily a model can be trained.
Deep explanation
The loss function optimization landscape represents how loss changes with respect to model parameters. In simple models like linear regression, the landscape is convex with a single global minimum. In deep learning, the landscape becomes highly non-convex with multiple local minima, saddle points, and flat regions. Gradient-based methods like SGD navigate this landscape iteratively. The geometry of this space strongly affects convergence speed and stability.
Real-world example
Training deep neural networks where optimization may get stuck in saddle points, slowing convergence.
Common mistakes
- Assuming all optimization problems are convex like linear regression.
Follow-up questions
- What are saddle points?
- Why does SGD help in non-convex landscapes?