technicals

What is gradient descent?

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

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.

Connects to Computer Science

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