Neural Machine Translation of Rare Words with Subword Units, Rico Sennrich, Barry Haddow, and Alexandra Birch, 2016Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) (Association for Computational Linguistics)DOI: 10.18653/v1/P16-1162 - Introduces Byte-Pair Encoding (BPE) for open-vocabulary neural machine translation, a work for subword tokenization in NLP.
BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding, Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova, 2019Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long and Short Papers) (Association for Computational Linguistics)DOI: 10.18653/v1/N19-1423 - While primarily about the BERT model, this paper details the WordPiece tokenization strategy used, making it a source for understanding WordPiece.
Tokenizers, Hugging Face, 2023 (Hugging Face) - Provides practical guidance and a comprehensive overview of modern tokenization methods, including BPE, WordPiece, and SentencePiece, with examples for implementation.