Abstract
Lexicon Enhanced Bidirectional Encoder Representations from Transformers (LEBERT) has achieved great success in Chinese Named Entity Recognition (NER). LEBERT performs lexical enhancement with a Lexicon Adapter layer, which facilitates deep lexicon knowledge fusion at the lower layers of BERT. However, this method is likely to introduce noise words and does not consider the possible conflicts between words when fusing lexicon information. To address this issue, we advocate for a novel lexical enhancement method, Sequential Lexicon Enhanced BERT (SLEBERT) for the Chinese NER, which builds sequential lexicon to reduce noise words and resolve the problem of lexical conflict. Compared with LEBERT, it leverages the position encoding of sequential lexicon and adaptive attention mechanism of sequential lexicon to enhance the lexicon feature. Experiments on the four available datasets identified that SLEBERT outperforms other lexical enhancement models in performance and efficiency.
Keywords: Chinese NER, Lexical enhancement, BERT, Adaptive attention
Introduction
Named entity recognition (NER) is a significant task in natural language processing (NLP), aiming to recognize entities from texts and accurately identify their types. The kinds of these entities mainly include names of people, organizations, places, etc. NER often extracts the valuable information from the unstructured text, that can be used for many other high-level tasks, such as information retrieval, the construction of knowledge graphs, question-answering systems, public opinion analysis, biomedicine, recommendation systems, and so on. When compared with English NER (Sun et al., 2020), the Chinese NER is more difficult to process since it usually involves word segmentation. One intuitive way of performing Chinese NER (Liu et al., 2022) is to perform word segmentation first before applying word sequence labeling. However, incorrectly segmented entity boundaries in segmentation lead to NER errors. To address this issue, most Chinese NER are character-based. Studies have shown that character-based methods outperform word-based methods for the Chinese NER, but character-based models still face the challenge of not completely extracting words and their sequence information. However, they are practically beneficial.
To overcome the problems, researchers began to explore the introduction of word information into character-based NER models, namely, lexical enhancement, to improve the performance of entity recognition. In recent years, researchers have proposed a variety of lexical enhancement methods (Li et al., 2023; Li et al., 2024; Zhang et al., 2024; Zhang et al., 2023). According to the different ways of introducing lexicon information, there are four lines of lexical enhancement methods for Chinese NER: dynamic architecture, adaptive embedding, graphical neural network, and pre-trained model. The dynamic architecture method suggests lexicon information by designing dynamic network structures, such as Lattice-long short-term memory (Lattice-LSTM; Zhang & Yang, 2018), lexicon rethinking convolutional neural network (LR-CNN; Gui et al., 2019a), and Flat-LAttice Transformer (FLAT; Li et al., 2020), and lightweight lexicon-enhanced transformer (LLET; Ji & Xiao, 2024). The adaptive embedding method presents an adaptive embedding representation of lexicon to represent entity information, like word-character (WC)-LSTM (Liu et al., 2019) and Simple-Lexicon (Ma et al., 2019), and span enhanced two-stage network with counterfactual rethinking (SENCR; Zheng et al., 2024). The graph neural network method uses graph structure to learn the representation of lexicon: collaborative graph network (CGN; Sui et al., 2019), lexicon-based graph neural network (LGN; Gui et al., 2019b), and randomly wired graph neural network (RWGNN; Chen et al., 2023). The pre-trained model method enhances the lexicon through the Bidirectional Encoder Representations from Transformers (BERT) pre-trained model, including BERT-BiLSTM-CRF (Dai et al., 2019) and Lexicon Enhanced Bidirectional Encoder Representations from Transformers (LEBERT) (Liu et al., 2021).
Although the LEBERT achieves relatively higher performance in multiple Chinese NER tasks, it has some limitations. First, the LEBERT introduce more potential words. In Fig. 1, “An City”, “Chang’an”, combined with lexical boundaries and contextual information, should be filtered. Second, the LEBERT cannot handle the problem of lexical information conflict. So, although the attention mechanism can assign different weights to different words, it does not consider the possible conflicts between words. In Fig. 1, “Xi’an City” and “Mayor” do not need to be introduced at the same time. Finally, the LEBERT does not distinguish the positional relationship between characters and words, resulting in insufficient utilization of word boundary information. For “Chang’an District”, “Chang” is the first word, “An” is the middle word, and “District” is the last word.
Figure 1. Character-word pairs in the LEBERT.
To resolve these issues, a Chinese NER method is proposed based on sequential lexicon called Sequential Lexicon Enhanced BERT (SLEBERT). Sequential lexicon is a sequence of lexicon words that match a specific sentence. By constructing sequential lexicon, removing noise words, applying position encoding technology, and effectively overcoming the problem of lexical conflict by introducing an adaptive attention mechanism for the sequential lexicon is achieved. Adaptive attention mechanism will adjust attention weight adaptively based on improved loss function. Multiple experiments are conducted on four available Chinese NER datasets, and the results verify the effectiveness of the proposed method.
The main contributions of the article are summarized as follows:
(1) A Chinese NER method based on sequential lexicon to enhance BERT is proposed to optimize LEBERT.
(2) The adaptive attention mechanism for the sequential lexicon is proposed to resolve the problem of lexicon information conflict.
(3) The four available datasets are applied to verify the effectiveness of the Chinese NER method based on sequential lexicon.
Related Work
Our work is in line with existing methods using neural network for Chinese NER (Ahmad, Shah & Lee, 2023; Hu & Ma, 2023; Xue et al., 2023). Character sequence labeling has been the dominant approach for Chinese NER, which has been empirically proven to be effective (Ding et al., 2019). One drawback of character-based NER, however, is that explicit word and word sequence information is not fully exploited, which can be potentially useful. To address this issue, Zhang & Yang (2018) first introduced lexicon into character-based NER model by using a lattice structure LSTM. Besides Lattice-LSTM, existing lexical enhancement methods also use many other network architectures, such as CNN in LR-CNN (Gui et al., 2019a), graph networks in CGN (Sui et al., 2019), LGN (Gui et al., 2019b) and the Transformer model in FLAT (Li et al., 2020), non-FLAT-lattice transformer (NFLAT; Wu et al., 2022). More recently, the popular pre-trained model has also been used for lexical enhancement, such as BERT-BiLSTM-CRF (Dai et al., 2019),
LEBERT (Liu et al., 2021) is in line with our work, focusing on lexical enhancement. Experimental results show that LEBERT achieves state-of-art performance which directly injects lexicon information between Transformer layers in BERT using a Lexicon Adapter. However, this method is likely to introduce noise words and does not consider the possible conflicts between words when fusing lexicon information.
Methods
The main architecture of the proposed Sequential Lexicon Enhanced BERT is shown in Fig. 2. The SLEBERT has three main differences when compared to LEBERT. First, the SLEBERT improves the quality of potential words by creating a sequential lexicon, which contributes to the elimination of interference words and enhances relative lexicon information. Second, position encoding and attention to sequential lexicon are used to fuse the lexical feature into BERT. Finally, the adaptive attention mechanism for the sequential lexicon is suggested to resolve the problem of lexical conflict.
Figure 2. The architecture of sequential lexicon enhanced BERT.
In this section we describe: (1) Sequential Lexicon Building (‘Sequential Lexicon Building’), which improves the quality of potential words; (2) Sequential Lexicon Fusion (‘Sequential Lexicon Fusion’), by injecting position embedding and representing attention of sequential lexicon; (3) Adaptive Attention (‘Adaptive Attention’), which resolves the problem of lexical conflict.
The succeeding sections present the construction of a sequential lexicon, which improves the quality of potential words; the fusion of sequential lexicon by plugging position embedding and attention of sequential lexicon; and the implementation of adaptive attention, which resolves the problem of lexical conflict.
Sequential lexicon building
For Chinese NER, character-based NER methods usually represent a Chinese sentence as a character sequence, containing character-level features solely. To make use of lexicon information, recent work tries to integrate the lexicon to enhance character-based models (Ji & Xiao, 2024; Xiao, Ji & Li, 2024; Zhang et al., 2024). Liu et al. (2021) introduced LEBERT to integrate lexicon information between Transformer layers of BERT directly, which showed good performance. However, LEBERT still has some challenges. For example, it introduces interference words and does not consider the possible conflicts between words when fusing lexicon information. To address these issues, we propose a novel lexical enhancement method, SLEBERT, that uses Sequential Lexicon to optimize LEBERT. Specifically, we first build a Trie based on a Chinese Lexicon, and use the Trie to obtain all of the potential words by traversing each character in a sentence instead of word segmentation. As shown in Fig. 1, for the character “安(An)”, we can find out four potential words, namely “安市(An City)”, “西安(Xi’an)”, “西安市(Xi’an City)”, and “西安市长安区(Chang’an District, Xi’an City)”. Then, we build a sequential lexicon to reduces noise words and improve the quality of potential words. The specific process of building a sequential lexicon can be described by Algorithm 1 .
| Algorithm 1: To build sequential lexicon |
| Input: Lexicon Trie T, the sequential character of Chinese sentence |
| Output: The k-th sequential lexicon |
| 1.Initialize an empty list LC. |
| 2.For each character c in C, do: build the first word list append to LC. |
| 3.Initialize an empty list LS. |
| 4.For each character c in C, do: use depth search algorithm DFS(index, current_sequence) to build sequential lexicon LS. |
Inferences drawn from the built sequential lexcion indicate that sequential lexicon requires optimization. For example, in Fig. 3, the sequential lexicon (Xi’an, mayor, Chang’an District) contains the sequential lexicon (mayor, Chang’an District). In addition, when compared with the sequential lexicon (Xi’an, mayor, Chang’an), the sequential lexicon (Xi’an, mayor, Chang’an district) is more accurate. Then we calculate the coverage rate of each sequential lexicon, as shown in Eq. (1), to optimize the sequential lexicon building.
Figure 3. An example of word sequence building and its optimization.
Where m represents the total number of words in the set LCi, CVi indicates the coverage rate of the ith sequence. The sequential lexicon are finally optimized into the top groups based on coverage rate.
| (1) |
Sequential lexicon fusion
The sequential lexicon is finally integrated into BERT in the form of the lexicon. First, extract the potential words corresponding to each character of a Chinese sentence based on sequential lexicon. Second, employ the attention of sequence lexicon to combine the potential words with the corresponding character, as shown in Fig. 4, which differs from the attention of lexicon employed in LEBERT. Finally, we use position encoding and attention of sequential lexicon to infuse the lexical feature into BERT.
Figure 4. The enhancement using sequential lexicon.
Extraction of potential words
The potential words corresponding to each character of a Chinese sentence are attained based on the sequential lexicon. The specific method can be described by Algorithm 2 . LXi represents the potential words set corresponding to the ith character. LXi, j characterizes the potential words of the ith character obtained based on the jth sequential lexicon.
| Algorithm 2: To extract the potential words based on sequential lexicon |
| Input: Sequential lexicon of TOP groups |
| Output: The potential words set LX, a two-dimensional array |
| 1. For each lexicon in the top group of sequential lexicon, get the start position and end position of each lexicon. |
| 2. For each lexicon in the top group of sequential lexicon, assign the lexicon to the LX matrix at the position[i][j], where i is the position of character in sentence and j is the index of lexicon sequential group. |
Represention of position encoding
Considering that the boundary contributions in different positions of the lexicon are different, position encoding is applied to add in embedding layer. The ith words in jth sequential lexicon group is represented as following:
| (2) |
| (3) |
| (4) |
where ew is a pre-trained word embedding lookup table, de denotes the dimension of word embedding, i represents the ith word as well as the position in sequential lexicon, Pi is position encoding, which is a combination of sine and cosine functions, and is word embedding fusing position encoding.
Fusion with attention of sequential lexicon
Each character is paired with multiple potential words, and each potential word corresponds to a sequential lexicon group. The contributions of distinct sequential lexicon are different. For example, for “Chang’an District, Xi’an City”, the sequential lexicon “Xi’an City, Chang’an District” should contribute the most because it is closest to the true segmentation. To pick the most relevant words in the lexicon set, the attention mechanism is introduced here.
Considering that sequential lexicon contains lexicon, the attention of sequential lexicon is therefore used. Specifically, represents the attention vector, aj represents the attention of the jth sequential lexicon group, it can be calculated as:
| (5) |
| (6) |
Consequently, we can get the weighted sum of all words by:
| (7) |
| (8) |
where is the hidden vectors of each word, W1 and W2 denote matrices of dimensions dh × de and dh × dh, respectively, and dh represents the size of the BERT hidden layer.
represents the output of the Transformer from layer l in the BERT model, represents the vector output of layer l after integrating lexicon information. Finally, the lexicon information is injected into the character vector by:
| (9) |
Adaptive attention
Considering the possible conflicts between words, as shown in Fig. 5, between “Xi’an city” and “Mayor”, if one of the words is close to the real semantic meaning, that is, the enhancement attention of the word is high and the attention of the other word should be very low.
Figure 5. An example of lexical enhancement conflict.
Therefore, the sequential lexicon’s adaptive attention mechanism is proposed to resolve the problem of lexical conflict by incorporating an extra module M into the L2 loss function, delineated by Eq. (10). Thus, the attention mechanism is adjusted adaptively.
| (10) |
where λ1 is a weight parameter, responsible for the extra module. λ2 denotes the regularization parameter of L2, θ is the set of all trainable parameters. The extra module M is defined by:
| (11) |
| (12) |
| (13) |
where fi denotes the lexical conflict reflection function. aj designates the attention of the jth sequential lexicon group. oij indicates whether the ith character is the first character or the last character of the jth potential words corresponding to the ith character. uj indicates whether there is lexical conflict in the ith character. It is judged by calculation tj, if there exists the ith character as both the first character and the last character in the potential words set, that means there is lexical conflict.
Experiments
We evaluate the proposed SLEBERT method using the F1 score (F1), precision (P), and recall (R) metrics, with a comparison of several lexical enhancement models. At the same time, this section performs ablation experiments to verify the effectiveness of the proposed sequential lexicon Chinese NER model. Last, the advantages of implementing sequential lexicon are analyzed.
Datasets
We evaluate the performance of SLEBERT on four mainstream Chinese NER benchmarking datasets, including Weibo NER (Peng & Dredze, 2015; Peng & Dredze, 2016; Weischedel et al., 2011), OntoNotes (Weischedel et al., 2011), Resume NER (Yu et al., 2022), and MSRA (Zhu, Wang & Karlsson, 2019). Weibo NER is a social media domain dataset, which is drawn from Sina Weibo; while OntoNotes and MSRA datasets are in the news domain. Resume NER dataset consists of resumes of senior executives. Table 1 lists the entity types of each dataset. Table 2 provides a detailed overview of each dataset, including the sizes of the training, development, and test sets.
Table 1. Public datasets of Chinese NER.
| Corpus | Entity types | URL |
|---|---|---|
| Weibo NER | Person, Location, Organization and Geo-political | https://huggingface.co/datasets/hltcoe/weibo_ner |
| MSRA | Person, Location, Organization | https://github.com/InsaneLife/ChineseNLPCorpus/tree/master/NER/MSRA |
| Resume NER | Person, Location, Organization, Country, Education, Profession, Race, Title | https://github.com/GuocaiL/nlp_corpus/tree/main/open_ner_data/ResumeNER |
| OntoNotes Release 5.0 | Preson, NORP, Facility, Organization, GPE, Location, Product, Event, Work of art, Law, Language, Date, Time, Percent, Money, Quantity, Ordinal, Cardinal | https://doi.org/10.35111/xmhb-2b84 |
Table 2. The statistics of the datasets.
| Datasets | Type | Train | Dev | Test |
|---|---|---|---|---|
| OntoNotes | Sentences | 15.7k | 4.3k | 4.3k |
| Char | 491.9k | 200.5k | 208.1k | |
| MSRA | Sentence | 46.4k | 4.4k | 4.4k |
| Char | 2169.9k | 172.6k | 172.6k | |
| Sentence | 1.4k | 0.27 k | 0.27 k | |
| Char | 73.8k | 14.5k | 14.8k | |
| Resume | Sentence | 3.8k | 0.46k | 0.48k |
| Char | 124.1k | 13.9k | 15.1k |
Experimental setting
Our model is constructed based on LEBERT, using the 200-dimension pre-trained word embedding from Song et al. (2018), the Adam optimizer with an initial learning rate of 1e−5 for the original parameters of BERT, 1e−4 for other parameters introduced by SLEBERT, and a maximum epoch number of 20 for training on all datasets. As shown in Fig. 6, the results on Resume NER, OntoNotes, and MSRA become more stable with increasing training iterations. Table 3 shows the maximum and average character lengths for each dataset sample and we set the max length of the sequence to 256; the training batch size is 20 for MSRA and four for the other datasets.
Figure 6. Learning curves for the four datasets.
Table 3. The maximum and average character lengths for each dataset.
| Datasets | The maximum character length | The average character length |
|---|---|---|
| Weibo NER | 175 | 54 |
| Resume NER | 178 | 42 |
| OntoNotes | 273 | 37 |
| MSRA | 281 | 46 |
Experimental results
To evaluate the effectiveness of the proposed SLEBERT, we compare our SLEBERT method with almost all the lexical enhancement models, including Lattice-LSTM, LR-CNN, CGN, FLAT, and LEBERT. These models achieve superior performance from various network architectures. In Table 4, we can see that SLEBERT improves the performance of LEBERT. The overall F1 score on Weibo NER is increased by 1.01%. The F1 score on OntoNotes is increased by 0.6%. The F1 score obtained on Resume NER is increased by 0.3%. For the MSRA dataset, the proposed method increases the F1 score by 0.07%.
Table 4. NER result.
| Models | OntoNotes | MARA | Weibo NER | Resume NER | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| P | R | F | P | R | F | P | R | F | P | R | F | |
| Lattice -LSTM | 76.35 | 71.56 | 73.88 | 93.57 | 92.79 | 93.18 | 53.04 | 62.25 | 58.79 | 94.81 | 94.11 | 94.46 |
| LR-CNN | 76.4 | 72.6 | 74.45 | 94.5 | 92.93 | 93.71 | 57.14 | 66.67 | 59.92 | 95.37 | 94.84 | 95.11 |
| CGN | 76.27 | 72.74 | 74.46 | 94.01 | 92.93 | 93.63 | 56.45 | 68.32 | 65.18 | 94.27 | 94.59 | 94.43 |
| FLAT | – | – | 75.7 | – | – | 94.35 | – | – | 63.42 | – | – | 95.45 |
| LEBERT | – | – | 82.08 | – | – | 95.7 | – | – | 70.75 | – | – | 96.08 |
| SLEBERT | 82.84 | 82.53 | 82.68 | 95.88 | 95.67 | 95.78 | 73.83 | 69.81 | 71.76 | 96.44 | 96.32 | 96.38 |
How sequential lexicon performs
To verify the effectiveness of sequential lexicon, we perform two ablation experiments. First, we remove the adaptive attention mechanism, and denote this method as ‘SLEBERT-’. Second, we remove the adaptive attention mechanism and position encoding, which merely utilize sequential lexicon to improve the quality of potential words. We denote this method as ‘SLEBERT–’. The results of the ablation experiments are reported in Table 5.
Table 5. Ablation experimental results.
| Models | OntoNotes | MARA | Weibo NER | Resume NER | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| P | R | F | P | R | F | P | R | F | P | R | F | |
| LEBERT | – | – | 82.08 | – | – | 95.7 | – | – | 70.75 | – | – | 96.08 |
| SLEBERT | 82.84 | 82.53 | 82.68 | 95.88 | 95.67 | 95.88 | 73.83 | 69.81 | 71.76 | 96.44 | 96.32 | 96.38 |
| SLEBERT- | 82.84 | 82.15 | 82.49 | 95.88 | 95.67 | 95.88 | 73.83 | 68.54 | 71.09 | 96.39 | 96.02 | 96.21 |
| SLEBERT– | 82.84 | 81.84 | 82.34 | 95.7 | 95.67 | 95.7 | 73.83 | 68.32 | 70.97 | 96.39 | 96.02 | 96.21 |
Based on the ablation experimental results, we can see that the performance of SLEBERT improved when we merely utilized sequential lexicon as compared with LEBERT. This is because sequential lexicon reduces noise words that can potentially confuse NER.
The input layer in BERT already takes into account the position encoding, what differs is that SLEBERT considers the position of a word within the sequential lexicon, but not the position of a character within input sentences, so the performance is only marginally improved when add relative position encoding.
We can also see that the performance of SLEBERT degrades when removing the adaptive attention mechanism. The adaptive attention module resolves the problem of lexical conflict.
Briefly, sequential lexicon reduces noise words, position encoding distinguishes words from different sequences, and adaptive attention mechanism extracts the most relevant words.
Advantages of using sequential lexicon
F1 against sentence length
Figure 7 shows the F1 value trend of the LEBERT and SLEBERT on the OntoNotes dataset. They show a similar performance-length curve, decreasing as the sentence length increases. We speculate that for lexicon enhanced models it may become more difficult to exact correct potential words because of the increased number of potential words as the sentence become longer. Compared with LEBERT, SLEBERT performs better when sentence length increases, demonstrating the more effective use of sequential lexicon.
Figure 7. F1 value against the sentence length.
Decrease rate of lexical conflict
Figure 8 shows the lexical conflict percentage between LEBERT and SLEBERT. We can see that sequential lexicon is useful for reducing noise words, such as decreasing the conflict words in the Train Dataset from 20.57% to 2.80% on OntoNotes, from 18.18% to 1.89% on MSRA, from 19.03% to 1.88% on Weibo NER, from 9.36% to 3.01% on Resume NER. On the other hand, the LEBERT indeed introduces many conflicts words that may affect the accuracy of Chinese NER and SLEBERT can improve the performance by sequential lexicon.
Figure 8. A comparison between LEBERT and SLEBERT in terms of efficiency, evaluated at lexical conflict percentage.
Case study
Table 6 shows several case studies comparing LEBERT and SLEBERT. It can be seen there are many irrelevant words from the LEBERT potential words. In sentence 1, “子小 (Zi Xiao)” and “小菇 (Xiao Gu)” is not valid and introduce confusion for person entity “小菇凉 (Little Girl)”, but SLEBERT can correctly extract “小菇凉 (Little Girl)”. In sentence 2, “华克 (Hua Ke)”and “克山 (Ke Shan)” is not valid and introduce confusion for location entity “华克山庄 (Walker Hill)”, but SLEBERT can correctly extract “华克山庄 (Walker Hill)”. The above suggests that SLEBERT can reduce noise words and extract more effective potential words by sequential lexicon.
Table 6. Examples of potential words.
|
Conclusions
We presented a novel lexical enhancement method, Sequential Lexicon Enhanced BERT for Chinese NER, which builds sequential lexicon to reduces noise words and resolve the problem of lexical conflict, finding that it gives good performance compared to LEBERT. The SLEBERT model is more effective in lexical enhancement thanks to the position encoding of sequential lexicon and adaptive attention mechanism of sequential lexicon. The performance of our method is limited by the quality and domain of the lexicon. These factors will affect the performance of NER to varying degrees. In addition, the sequential lexicon group may affect the accuracy of our NER model since the value of TOP when optimizing sequential lexicon affects the number of potential words. We leave the investigation of such influence to future work.
Supplemental Information
Acknowledgments
We thank Hao Zheng and Jiashan Zhao for their achievements that inspired this work, and we would like to thank the anonymous reviewers for their helpful remarks.
Funding Statement
This work was supported by Xi’an Research Institute of High-Tech Fund (No. 2022QN-S008). The funders had no role in study design, data collection and analysis, decision to publish, or preparation of the manuscript.
Additional Information and Declarations
Competing Interests
The authors declare there are no competing interests.
Author Contributions
Xin Liu conceived and designed the experiments, performed the experiments, analyzed the data, performed the computation work, prepared figures and/or tables, authored or reviewed drafts of the article, and approved the final draft.
Jiashan Zhao conceived and designed the experiments, performed the experiments, analyzed the data, authored or reviewed drafts of the article, and approved the final draft.
Junping Yao conceived and designed the experiments, authored or reviewed drafts of the article, and approved the final draft.
Hao Zheng conceived and designed the experiments, analyzed the data, authored or reviewed drafts of the article, and approved the final draft.
Zhong Wang conceived and designed the experiments, analyzed the data, authored or reviewed drafts of the article, and approved the final draft.
Data Availability
The following information was supplied regarding data availability:
The code and data are available in the Supplementary Files.
The third-party data are available at:
- Weibo NER: https://huggingface.co/datasets/hltcoe/weibo_ner
- MSRA: https://github.com/InsaneLife/ChineseNLPCorpus/tree/master/NER/MSRA
- Resume NER: https://github.com/GuocaiL/nlp_corpus/tree/main/open_ner_data/ResumeNER
- OntoNotes Release 5.0: https://doi.org/10.35111/xmhb-2b84.
References
- Ahmad, Shah & Lee (2023).Ahmad PN, Shah AM, Lee K. A review on electronic health record text-mining for biomedical name entity recognition in healthcare domain. Healthcare. 2023;11(9):1268. doi: 10.3390/healthcare11091268. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Chen et al. (2023).Chen J, Xi X, Sheng VS, Cui Z. Randomly wired graph neural network for Chinese NER. Expert Systems with Applications. 2023;227:120245. doi: 10.1016/j.eswa.2023.120245. [DOI] [Google Scholar]
- Dai et al. (2019).Dai Z, Wang X, Ni P, Li Y, Li G, Bai X. Named entity recognition using BERT BiLSTM CRF for Chinese electronic health records. 2019 12th international congress on image and signal processing, biomedical engineering and informatics (cisp-bmei); Piscataway. 2019. pp. 1–5. [Google Scholar]
- Ding et al. (2019).Ding R, Xie P, Zhang X, Lu W, Si L. A neural multi-digraph model for Chinese NER with gazetteers. Proceedings of the 57th annual meeting of the association for computational linguistics; Stroudsburg. 2019. pp. 1462–1467. [Google Scholar]
- Gui et al. (2019a).Gui T, Ma R, Zhang Q, Zhao L, Jiang Y-G, Huang X. CNN-based Chinese NER with Lexicon rethinking. Twenty-Eighth International Joint Conference on Artificial Intelligence {IJCAI-19}; 2019a. [DOI] [Google Scholar]
- Gui et al. (2019b).Gui T, Zou Y, Zhang Q, Peng M, Fu J, Wei Z, Huang X-J. A lexicon-based graph neural network for Chinese NER. Proceedings of the 2019 conference on empirical methods in natural language processing and the 9th international joint conference on natural language processing (EMNLP-IJCNLP); Stroudsburg. 2019b. pp. 1040–1050. [Google Scholar]
- Hu & Ma (2023).Hu Z, Ma X. A novel neural network model fusion approach for improving medical named entity recognition in online health expert question-answering services. Expert Systems with Applications. 2023;223:119880. doi: 10.1016/j.eswa.2023.119880. [DOI] [Google Scholar]
- Ji & Xiao (2024).Ji Z, Xiao Y. LLET: lightweight lexicon-enhanced transformer for Chinese. 2024–2024 IEEE international conference on acoustics, speech and signal processing (ICASSP); Piscataway. 2024. pp. 12677–12681. [Google Scholar]
- Li et al. (2024).Li Z, Cao S, Zhai M, Ding N, Zhang Z, Hu B. Multi-level semantic enhancement based on self-distillation BERT for Chinese named entity recognition. Neurocomputing. 2024;586:127637. doi: 10.1016/j.neucom.2024.127637. [DOI] [Google Scholar]
- Li et al. (2023).Li H, Cheng M, Yang Z, Yang L, Chua Y. Named entity recognition for Chinese based on global pointer and adversarial training. Scientific Reports. 2023;13:3242. doi: 10.1038/s41598-023-30355-y. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Li et al. (2020).Li X, Yan H, Qiu X, Huang X. FLAT: Chinese NER using flat-lattice transformer. 20202004.11795
- Liu et al. (2021).Liu W, Fu X, Zhang Y, Xiao W. Lexicon enhanced Chinese sequence labeling using BERT adapter. 20212105.07148
- Liu et al. (2022).Liu P, Guo Y, Wang F, Li G. Chinese named entity recognition: the state of the art. Neurocomputing. 2022;473:37–53. doi: 10.1016/j.neucom.2021.10.101. [DOI] [Google Scholar]
- Liu et al. (2019).Liu W, Xu T, Xu Q, Song J, Zu Y. An encoding strategy based word-character LSTM for Chinese NER. Proceedings of the 2019 conference of the North American chapter of the Association for Computational Linguistics: human language technologies, volume 1 (Long and Short Papers); Stroudsburg. 2019. pp. 2379–2389. [Google Scholar]
- Ma et al. (2019).Ma R, Peng M, Zhang Q, Huang X. Simplify the usage of lexicon in Chinese NER. 20191908.05969
- Peng & Dredze (2015).Peng N, Dredze M. Named entity recognition for Chinese social media with jointly trained embeddings. Proceedings of the 2015 conference on empirical methods in natural language processing; Stroudsburg. 2015. pp. 548–554. [Google Scholar]
- Peng & Dredze (2016).Peng N, Dredze M. Improving named entity recognition for Chinese social media with word segmentation representation learning. 20161603.00786
- Song et al. (2018).Song Y, Shi S, Li J, Zhang H. Directional skip-gram: explicitly distinguishing left and right context for word embeddings. Proceedings of the 2018 conference of the North American chapter of the association for computational linguistics: human language technologies, volume 2 (Short Papers); Stroudsburg. 2018. pp. 175–180. [Google Scholar]
- Sui et al. (2019).Sui D, Chen Y, Liu K, Zhao J, Liu S. Leverage lexical knowledge for Chinese named entity recognition via collaborative graph network. Proceedings of the 2019 conference on empirical methods in natural language processing and the 9th international joint conference on natural language processing (EMNLP-IJCNLP); Stroudsburg. 2019. pp. 3830–3840. [Google Scholar]
- Sun et al. (2020).Sun T, Shao Y, Li X, Liu P, Yan H, Qiu X, Huang X. Learning sparse sharing architectures for multiple tasks. Proceedings of the AAAI conference on artificial intelligence; Washington D.C.. 2020. pp. 8936–8943. [Google Scholar]
- Weischedel et al. (2011).Weischedel R, Pradhan S, Ramshaw L, Palmer M, Xue N, Marcus M, Taylor A, Greenberg C, Hovy E, Belvin R. OntoNotes release 4.0. LDC2011T03. Linguistic Data Consortium; Philadelphia: 2011. p. 17. [Google Scholar]
- Wu et al. (2022).Wu S, Song X, Feng Z, Wu X-J. NFLAT: non-flat-lattice transformer for Chinese named entity recognition. 20222205.05832
- Xiao, Ji & Li (2024).Xiao Y, Ji Z, Li J. DuST: dual-grained syntax-aware transformer network for Chinese named entity recognition. ICASSP 2024–2024 IEEE international conference on acoustics, speech and signal processing (ICASSP); Piscataway. 2024. pp. 12717–12721. [Google Scholar]
- Xue et al. (2023).Xue Z, He G, Liu J, Jiang Z, Zhao S, Lu W. Re-examining lexical and semantic attention: dual-view graph convolutions enhanced BERT for academic paper rating. Information Processing & Management. 2023;60:103216. doi: 10.1016/j.ipm.2022.103216. [DOI] [Google Scholar]
- Yu et al. (2022).Yu Y, Wang Y, Mu J, Li W, Jiao S, Wang Z, Lv P, Zhu Y. Chinese mineral named entity recognition based on BERT model. Expert Systems with Applications. 2022;206:117727. doi: 10.1016/j.eswa.2022.117727. [DOI] [Google Scholar]
- Zhang et al. (2023).Zhang Y, Li J, Xin Y, Zhao X, Liu Y. A model for Chinese named entity recognition based on global pointer and adversarial learning. Chinese Journal of Electronics. 2023;32(4):854–867. doi: 10.23919/cje.2022.00.279. [DOI] [Google Scholar]
- Zhang et al. (2024).Zhang L, Xia P, Ma X, Yang C, Ding X. Enhanced Chinese named entity recognition with multi-granularity BERT adapter and efficient global pointer. Complex & Intelligent Systems. 2024;10:4473–4491. doi: 10.1007/s40747-024-01383-6. [DOI] [Google Scholar]
- Zhang & Yang (2018).Zhang Y, Yang J. Chinese NER using lattice LSTM. Proceedings of the 56th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers); Stroudsburg. 2018. pp. 1554–1564. [Google Scholar]
- Zheng et al. (2024).Zheng H, Li Q, Chen S, Liang Y, Liu L. SENCR: a span enhanced two-stage network with counterfactual rethinking for Chinese NER. Proceedings of the AAAI conference on artificial intelligence; Washington D.C.. 2024. pp. 19679–19687. [Google Scholar]
- Zhu, Wang & Karlsson (2019).Zhu Y, Wang G, Karlsson BF. CAN-NER: convolutional attention network for Chinese named entity recognition. 20191904.02141
Associated Data
This section collects any data citations, data availability statements, or supplementary materials included in this article.
Supplementary Materials
Data Availability Statement
The following information was supplied regarding data availability:
The code and data are available in the Supplementary Files.
The third-party data are available at:
- Weibo NER: https://huggingface.co/datasets/hltcoe/weibo_ner
- MSRA: https://github.com/InsaneLife/ChineseNLPCorpus/tree/master/NER/MSRA
- Resume NER: https://github.com/GuocaiL/nlp_corpus/tree/main/open_ner_data/ResumeNER
- OntoNotes Release 5.0: https://doi.org/10.35111/xmhb-2b84.








