During pretraining a transformer can score many token positions of a packed sequence in one pass, but at serving time a decoder still emits tokens one after another. How do those time-shapes differ?
Select an answer to reveal the explanation.
Short Explanation
Training can grade a packed sequence across many positions in one pass. Serving a decoder is still one token after another, because the next word depends on the last. Flip those shapes, or call them job schedules, and the time picture is backwards.
Full Explanation
Packed training can score many positions at once. Autoregressive serving still emits one token after another. Swapping those shapes, or calling them job schedules, misses the contrast.