▲ | zekica 2 days ago | |||||||
The two parts of your statement don't go together. A list of potential output tokens and their probabilities are generated deterministically but the actual token returned is then chosen at random (weighted based on the "temperature" parameter and the probability value). | ||||||||
▲ | galaxyLogic 2 days ago | parent | next [-] | |||||||
I assume they use software-based pseudo-random-number generators. Those can typically be given a seed-value which determines (deterministically) the sequence of random numbers that will be generated. So if an LLM uses a seedable pseudo-random-number-generator for its random numbers, then it can be fully deterministic. | ||||||||
| ||||||||
▲ | mzl 2 days ago | parent | prev [-] | |||||||
That depends on the sampling strategy. Greedy sampling takes the max token at each step. |