Question 1
A start-up is building a new language model for a low-resource language with many compound words and complex morphology. They are debating tokenization strategies. Which of the following approaches is most likely to offer the best balance between vocabulary size, handling OOV words, and capturing morphological variants effectively for this scenario?
Character-level tokenization
Word-level tokenization with a fixed vocabulary of 50,000 common words.
Subword tokenization (e.g., BPE or SentencePiece) trained on the available corpus.
Using only pre-defined special tokens and treating all other text as raw byte sequences.
