Sapiens
Technicals

What is gradient descent?

Published June 2, 2026 · 4 min read

GRADIENT DESCENTAlways step toward lower ground.In thick fog, follow the slope down until you hit the bottom.wrong guessesmost accurateEach step is smaller as the ground flattens — the slope itself points the way down.

Definition

Gradient descent is the step-by-step method an AI uses to gradually correct its own mistakes by adjusting its internal settings until its predictions become as accurate as possible.[1]

At a glance

  • It is how an AI model learns: it measures how wrong it is, then nudges its settings to be a little less wrong, over and over.[4]
  • The learning rate is the step size. Too big and it overshoots the answer; too small and training takes forever and costs more.[2]
  • It can get stuck in a “good enough” valley that is not the best possible answer, which is why model quality varies.[3]
  • Nearly every modern AI tool, from chatbots to fraud detection, is trained this way.[1]

Why it matters to your business

Gradient descent is the engine behind every AI product you might buy or build. Its settings directly affect two things you care about: how much training costs (more steps means more compute spend) and how accurate the final model is. Vendors who tune it well ship cheaper, sharper models.[4]

The hidden trade-off

Training is a balancing act. Rush it with big steps and the model never settles on a good answer. Crawl with tiny steps and you burn time and money.[2] The model can also settle into a mediocre “valley” that looks done but is not optimal, so results are never fully guaranteed.[3]

Bottom line

Gradient descent is the patient, repeat-until-right learning process that turns a raw AI model into one that actually makes useful predictions.

References

  1. What is Gradient Descent? IBM www.ibm.com
  2. What is Learning Rate in Machine Learning? IBM www.ibm.com
  3. Gradient descent. Wikipedia en.wikipedia.org
  4. Linear regression: Gradient descent. Google for Developers developers.google.com

Comments

Questions, corrections, and links welcome. Be specific and civil.

  • Loading comments…