Question 1
Which of the following statements best describes the primary advantage of the SentencePiece tokenizer compared to a standard BPE implementation?
It is significantly faster to train because it does not need to count pairs.
It results in a smaller vocabulary size by always merging the shortest tokens first.
It is inherently language-agnostic, treating text as a raw stream of Unicode characters, which is ideal for languages without clear word delimiters like Japanese or Thai.
It is deterministic and always produces the same tokenization for a given string,unlike BPE which can be probabilistic.
