What is the name of the concept that Markov published in 1906 regarding word prediction?	Markov Chains (or Markov models)
What is the finished map of connections between words, built by tallying messages, called?	Transition Matrix (or Frequency Table)
What mathematical process is applied to the transition matrix to determine the likelihood of the next word?	Normalization, which creates a probability distribution
What term describes the act of selecting the next word based on the current context in a language model?	Sampling
What type of model was used for next-word prediction on phones around 2010?	N-gram models
What major technological shift began replacing the table lookup approach around 2015?	Neural networks (specifically RNNs and Transformers)
In the context of the generator, what does "100% interpretable" mean?	The underlying algorithm and word selection process are easy to understand.
What is the primary function of a next-token generator?	To predict the most probable next word or token in a sequence.
