Learn Before
A system for generating text has produced a ranked list of potential next words and their associated scores: {'the': 0.52, 'a': 0.21, 'one': 0.15, 'that': 0.08}. If the system's final step is to select only the single highest-scoring option and discard all others, what will be the output?
0
1
Tags
Ch.5 Inference - Foundations of Large Language Models
Foundations of Large Language Models
Foundations of Large Language Models Course
Computing Sciences
Application in Bloom's Taxonomy
Cognitive Psychology
Psychology
Social Science
Empirical Science
Science
Related
A system for generating text has produced a ranked list of potential next words and their associated scores:
{'the': 0.52, 'a': 0.21, 'one': 0.15, 'that': 0.08}. If the system's final step is to select only the single highest-scoring option and discard all others, what will be the output?A text generation system follows a procedure where, after ranking potential next words by their scores, it selects only the single word with the highest score and permanently discards all other options. What is the most significant potential drawback of this final selection method?
Consider a text generation system where the final step involves selecting the next word from a ranked list of candidates. If this final step's procedure is to choose only the single most probable option, it will select the top candidate and discard all others, even if the second-ranked candidate has a very high probability score.