|
|
|
|
|
by xg15
1134 days ago
|
|
I think I'll stick with that constrained token generator from a few days ago, thank you... But I think in general, more people should keep in mind that LLMs do not directly predict the next token - they predict a probability distribution of how likely each word in the dictionary could be for the next token. Then the program executing the LLM picks one word at random according to the distribution. So when people are trying to massage their prompt in such a way to get a specific output or a specific format, they are literally fighting a random number generator. This seems sort of silly to me. |
|