paper-with-me

홈 › Papers

Pre-Training with Whole Word Masking for Chinese BERT

2019-06-19 · Yiming Cui, Wanxiang Che, Ting Liu, Bing Qin, Ziqing Yang

Bidirectional Encoder Representations from Transformers (BERT) has shown marvelous improvements across various NLP tasks, and its consecutive variants have been proposed to further improve the performance of the pre-trained language models. In this paper, we aim to first introduce the whole word masking (wwm) strategy for Chinese BERT, along with a series of Chinese pre-trained language models. Then we also propose a simple but effective model called MacBERT, which improves upon RoBERTa in several ways. Especially, we propose a new masking strategy called MLM as correction (Mac). To demonstrate the effectiveness of these models, we create a series of Chinese pre-trained language models as our baselines, including BERT, RoBERTa, ELECTRA, RBT, etc. We carried out extensive experiments on ten Chinese NLP tasks to evaluate the created Chinese pre-trained language models as well as the proposed MacBERT. Experimental results show that MacBERT could achieve state-of-the-art performances on many NLP tasks, and we also ablate details with several findings that may help future research. We open-source our pre-trained language models for further facilitating our research community. Resources are available: https://github.com/ymcui/Chinese-BERT-wwm

📄 PDF Abstract BibTeX arXiv:1906.08101

Code (2)

ymcui/Chinese-BERT-wwm 공식 구현 pytorch
brightmart/roberta_zh tf

Tasks

Document ClassificationGeneral ClassificationLanguage ModellingMachine Reading ComprehensionNamed Entity Recognition (NER)Natural Language InferenceReading ComprehensionSentiment Analysis

Methods 이 논문이 사용한 방법론

Linear Layer A Linear Layer is a projection $\mathbf{XW + b}$.
Residual Connection 설명 없음
Attention Dropout Attention Dropout is a type of dropout used in attention-based architectures, where elements are randomly dropped out of the…
Linear Warmup With Linear Decay Linear Warmup With Linear Decay is a learning rate schedule in which we increase the learning rate linearly for $n$ updates and then linearly decay afterwards.
Weight Decay 설명 없음
Refunds@Expedia|||How do I get a full refund from Expedia? “How do I get a full refund from Expedia? How do I get a full refund from Expedia? – Call ☎️ +1-(888) 829 (0881) or +1-805-330-4056 or +1-805-330-4056 for Quick Help &…
Dense Connections Dense Connections, or Fully Connected Connections, are a type of layer in a deep neural network that use a linear operation where every input is connected to every output…
Adam 설명 없음

Similar Papers 제목 키워드 기반

"Is Whole Word Masking Always Better for Chinese BERT?": Probing on Chinese Grammatical Error Correction

2021-11-16 · ACL ARR November 2021 11 · Anonymous

Whole word masking (WWM), which masks all subwords corresponding to a word at once, makes a better English BERT model. For the Chinese language, however, there is no subword because each token is an atomic character. The…

Grammatical Error CorrectionLanguage ModelingLanguage ModellingMasked Language Modeling+1

"Is Whole Word Masking Always Better for Chinese BERT?": Probing on Chinese Grammatical Error Correction

2022-03-01 · Yong Dai, Linyang Li, Cong Zhou, Zhangyin Feng 외

Whole word masking (WWM), which masks all subwords corresponding to a word at once, makes a better English BERT model. For the Chinese language, however, there is no subword because each token is an atomic character. The…

Grammatical Error CorrectionLanguage ModelingLanguage ModellingMasked Language Modeling+1

“Is Whole Word Masking Always Better for Chinese BERT?”: Probing on Chinese Grammatical Error Correction

2022-05-01 · Findings (ACL) 2022 5 · Yong Dai, Linyang Li, Cong Zhou, Zhangyin Feng 외

Whole word masking (WWM), which masks all subwords corresponding to a word at once, makes a better English BERT model. For the Chinese language, however, there is no subword because each token is an atomic character. The…

Grammatical Error CorrectionLanguage ModelingLanguage ModellingMasked Language Modeling+1

Chinese ModernBERT with Whole-Word Masking

2025-10-14 · Zeyu Zhao, Ningtao Wang, Xing Fu, Yu Cheng arxiv

Encoder-only Transformers have advanced along three axes -- architecture, data, and systems -- yielding Pareto gains in accuracy, speed, and memory efficiency. Yet these improvements have not fully transferred to Chinese…

Character, Word, or Both? Revisiting the Segmentation Granularity for Chinese Pre-trained Language Models

2023-03-20 · Xinnian Liang, Zefan Zhou, Hui Huang, Shuangzhi Wu 외

Pretrained language models (PLMs) have shown marvelous improvements across various NLP tasks. Most Chinese PLMs simply treat an input text as a sequence of characters, and completely ignore word information. Although Who…