
Ultimate access to all questions.
Deep dive into the quiz with AI chat providers.
We prepare a focused prompt with your quiz and certificate details so each AI can offer a more tailored, in-depth explanation.
A product manager wants consistent, reproducible outputs across multiple calls to the same model using the same input. Which configuration should they use?
A
High temperature
B
Randomized seed
C
Low temperature and fixed random seed
D
High top-p value
Explanation:
To achieve consistent, reproducible outputs across multiple calls to the same model with the same input, the correct configuration is:
Low temperature: Temperature controls the randomness of the output. Lower temperature values (closer to 0) make the model more deterministic and focused on the most likely tokens, reducing randomness.
Fixed random seed: Setting a fixed seed ensures that the random number generator produces the same sequence of values each time, making the output reproducible.
A) High temperature: Increases randomness and variability in outputs, making them less consistent.
B) Randomized seed: Using different seeds would produce different outputs even with the same input.
D) High top-p value: Top-p (nucleus sampling) filters the probability distribution, but doesn't guarantee reproducibility like a fixed seed does.
This combination ensures deterministic behavior while maintaining model quality for consistent results across multiple inference calls.