
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.
Q5. 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:
Explanation:
To achieve consistent, reproducible outputs across multiple calls with the same input, the correct configuration is low temperature and fixed random seed.
Here's why:
Temperature: Controls the randomness of predictions. Low temperature (e.g., 0.1) makes the model more deterministic and focused on the highest probability tokens, while high temperature (e.g., 0.9) increases randomness and creativity.
Random Seed: A fixed seed ensures that the random number generator produces the same sequence of random numbers each time, leading to reproducible results.
Why other options are incorrect:
Key Concept: For reproducible AI outputs, combine low temperature (to reduce randomness) with a fixed random seed (to ensure consistent random number generation). This is essential for testing, debugging, and production applications where consistency is required.