Deterministic Output
When an AI model produces the same output every time for the same input. Achieved by setting temperature to 0 and using fixed random seeds.
Why It Matters
Deterministic outputs are essential for reproducibility, testing, and applications where consistency matters more than creativity.
Example
Setting temperature=0 so that asking 'What is 2+2?' always returns 'The answer is 4.' with identical phrasing every time.
Think of it like...
Like a vending machine — the same selection always gives you the same product, no surprises.
Related Terms
Temperature
A parameter that controls the randomness or creativity of an LLM's output. Lower temperatures (closer to 0) make outputs more deterministic and focused; higher temperatures increase randomness and creativity.
Inference
The process of using a trained model to make predictions on new, previously unseen data. Inference is what happens when an AI model is deployed and actively serving results to users.
Stochastic
Involving randomness or probability. In ML, stochastic processes include random weight initialization, stochastic gradient descent, and probabilistic sampling during text generation.