Three tools sit on a docent’s bench: one reads a whole plaque and labels it, one writes the next sentence of a story, and one reads a source language then writes a target language. Which architecture families are those?
Select an answer to reveal the explanation.
Short Explanation
Three benches, three jobs. Encoder-only reads both ways and labels. Decoder-only writes the next sentence. Encoder-decoder reads one language and writes another. Swap those families, or call them graph or NCCL tools, and the plaque, the story, and the translation all land on the wrong bench.
Full Explanation
Encoder-only models suit bidirectional understanding such as labeling. Decoder-only models generate the next token. Encoder-decoder models map a source sequence to a target sequence. Swapping those, or calling them graph or NCCL tools, is wrong.