A little-league registration desk runs a token classifier and then prints raw B-PER and I-PER strings on the parent receipt. What should the app do before the UI?
Select an answer to reveal the explanation.
Short Explanation
B-PER and I-PER are token tags, not a parent-facing name. Merge the subword and BIO pieces into one player-name field before the receipt prints. Showing raw tags, inventing a name with a 70B, or clustering a roster does not finish that postprocess.
Full Explanation
Token classifiers emit a label for each token, often on word pieces, using a BIO scheme such as B-PER and I-PER. The application must merge those pieces and group consecutive person tags into one name field before any user-facing screen. Printing raw tag strings is not a finished record. A generator or a clusterer does not replace that span-grouping postprocess.