AI SHORTS
150-word primers for busy PMs
CompareInterviewHome
Menu
CompareInterviewHome

AI Concepts

Learn one swipe at a time

Logits and Token Probabilities
WHAT IT IS

Logits are raw output scores from a model representing the unnormalized likelihood of each token. Token probabilities convert these logits into normalized values, indicating the chance each token will be selected next.

HOW IT WORKS

The model generates logits for every possible token in its vocabulary. These logits are passed through a softmax function, normalizing them into probabilities that sum to one. The token with the highest probability is typically chosen for output.

WHY IT MATTERS

Accurate token probabilities enable better control over AI output quality and diversity. For product managers, this affects user experience by improving response relevance, impacts cost and latency by influencing sampling strategies, and supports scalable deployment by managing computational resources efficiently.

Logits and Token Probabilities | AI Concepts | AI Shorts | AI PM World