Question 24
During training, they strictly enforce teacher forcing, meaning the ground-truth previous tokens are always provided as input to predict the current token. Based on the above setup, answer the given subquestions.
In the inference phase (when the model is used for generation), why is the teacher forcing technique not used, and what is the primary challenge this introduces?
Teacher forcing is used, but only with a small probability.
It's not used because the ground-truth sequence is unknown; this introduces the exposure bias problem, where the model is unfamiliar with its own prediction errors.
It's not used because it drastically slows down the inference speed.
It's not used; the challenge is the need for a separate encoder-decoder architecture.