paper-with-me

Papers

BPE-Dropout: Simple and Effective Subword Regularization

2019-10-29 · ACL 2020 6 · Ivan Provilkov, Dmitrii Emelianenko, Elena Voita

Subword segmentation is widely used to address the open vocabulary problem in machine translation. The dominant approach to subword segmentation is Byte Pair Encoding (BPE), which keeps the most frequent words intact while splitting the rare ones into multiple tokens. While multiple segmentations are possible even with the same vocabulary, BPE splits words into unique sequences; this may prevent a model from better learning the compositionality of words and being robust to segmentation errors. So far, the only way to overcome this BPE imperfection, its deterministic nature, was to create another subword segmentation algorithm (Kudo, 2018). In contrast, we show that BPE itself incorporates the ability to produce multiple segmentations of the same word. We introduce BPE-dropout - simple and effective subword regularization method based on and compatible with conventional BPE. It stochastically corrupts the segmentation procedure of BPE, which leads to producing multiple segmentations within the same fixed BPE framework. Using BPE-dropout during training and the standard BPE during inference improves translation quality up to 3 BLEU compared to BPE and up to 0.9 BLEU compared to the previous subword regularization.

📄 PDF Abstract BibTeX arXiv:1910.13267

Code (7)

VProv/BPE-Dropout 공식 구현
PatxiofromAlphensign/subword-nmt-mods
VKCOM/YouTokenToMe
google/sentencepiece tf
kh-mo/QA_wikisql
mozilla/subword-nmt
rsennrich/subword-nmt

Tasks

Machine TranslationSegmentationTranslation

Methods 이 논문이 사용한 방법론

BPE Byte Pair Encoding, or BPE, is a subword segmentation algorithm that encodes rare and unknown words as sequences of subword units. The intuition is that various word…

Similar Papers 제목 키워드 기반

MaxMatch-Dropout: Subword Regularization for WordPiece

2022-09-09 · COLING 2022 10 · Tatsuya Hiraoka

We present a subword regularization method for WordPiece, which uses a maximum matching algorithm for tokenization. The proposed method, MaxMatch-Dropout, randomly drops words in a search using the maximum matching algor…

Machine TranslationText ClassificationTranslation

Distributional Properties of Subword Regularization

2024-08-21 · Marco Cognetta, Vilém Zouhar, Naoaki Okazaki

Subword regularization, used widely in NLP, improves model performance by reducing the dependency on exact tokenizations, augmenting the training corpus, and exposing the model to more unique contexts during training. BP…

Machine Translation

LCP-dropout: Compression-based Multiple Subword Segmentation for Neural Machine Translation

2022-02-28 · Keita Nonaka, Kazutaka Yamanouchi, Tomohiro I, Tsuyoshi Okita 외

In this study, we propose a simple and effective preprocessing method for subword segmentation based on a data compression algorithm. Compression-based subword segmentation has recently attracted significant attention as…

Data CompressionMachine TranslationSegmentationTranslation

Subword Regularization: Improving Neural Network Translation Models with Multiple Subword Candidates

2018-04-29 · ACL 2018 7 · Taku Kudo

Subword units are an effective way to alleviate the open vocabulary problems in neural machine translation (NMT). While sentences are usually converted into unique subword sequences, subword segmentation is potentially a…

Language ModelingLanguage ModellingMachine TranslationNMT+2

Pretraining Language Models with Subword Regularization: An Empirical Study of BPE Dropout in Low-Resource NLP

2026-05-13 · Ruan Visser, Trienko Grobler, Marcel Dunaiski arxiv

Subword regularization methods such as BPE dropout are typically applied only during fine-tuning, while pretraining is usually done with deterministic tokenization. This creates a potential segmentation mismatch between …