Literature DB >> 29084508

Long short-term memory RNN for biomedical named entity recognition.

Chen Lyu1, Bo Chen2, Yafeng Ren3, Donghong Ji4.   

Abstract

BACKGROUND: Biomedical named entity recognition(BNER) is a crucial initial step of information extraction in biomedical domain. The task is typically modeled as a sequence labeling problem. Various machine learning algorithms, such as Conditional Random Fields (CRFs), have been successfully used for this task. However, these state-of-the-art BNER systems largely depend on hand-crafted features.
RESULTS: We present a recurrent neural network (RNN) framework based on word embeddings and character representation. On top of the neural network architecture, we use a CRF layer to jointly decode labels for the whole sentence. In our approach, contextual information from both directions and long-range dependencies in the sequence, which is useful for this task, can be well modeled by bidirectional variation and long short-term memory (LSTM) unit, respectively. Although our models use word embeddings and character embeddings as the only features, the bidirectional LSTM-RNN (BLSTM-RNN) model achieves state-of-the-art performance - 86.55% F1 on BioCreative II gene mention (GM) corpus and 73.79% F1 on JNLPBA 2004 corpus.
CONCLUSIONS: Our neural network architecture can be successfully used for BNER without any manual feature engineering. Experimental results show that domain-specific pre-trained word embeddings and character-level representation can improve the performance of the LSTM-RNN models. On the GM corpus, we achieve comparable performance compared with other systems using complex hand-crafted features. Considering the JNLPBA corpus, our model achieves the best results, outperforming the previously top performing systems. The source code of our method is freely available under GPL at https://github.com/lvchen1989/BNER .

Entities:  

Keywords:  Biomedical named entity recognition; Character representation; LSTM; Recurrent neural network; Word embeddings

Mesh:

Year:  2017        PMID: 29084508      PMCID: PMC5663060          DOI: 10.1186/s12859-017-1868-5

Source DB:  PubMed          Journal:  BMC Bioinformatics        ISSN: 1471-2105            Impact factor:   3.169


Background

With the explosive increase of biomedical texts, information extraction, which aims to unlock structured information from raw text, has received more and more attention in recent years. Biomedical named entity recognition (BNER), which recognizes important biomedical entities (e.g. genes and proteins) from text, is a essential step in biomedical information extraction. Because BNER is a fundamental task, it becomes the focus of some shared-task challenges, such as BioCreative II gene mention (GM) task [1] and JNLPBA 2004 task [2]. Most systems employed machine learning algorithms in BNER, likely due to the availability of the annotated datasets and promising results. Various machine learning models have been used for this task, such as Conditional Random Fields (CRFs) [3-7], Support Vector Machines (SVMs) [8], Maximum Entropy Markov Model (MEMM) [9] and Hidden Markov Model (HMM) [10]. These machine learning algorithms use different kinds of features, including orthographic, morphological, part-of-speech(POS) and syntactic features of words, word cluster features and domain-specific features using external resources, such as BioThesaurus [11]. However, the success of these approaches heavily depends on the appropriate feature set, which often requires much manual feature engineering effort for each task. The rapid development of deep learning on many tasks (e.g., [12-15]) brings hope for possibly alleviating the problem of avoiding manual feature engineering. It provides a different approach that automatically learns latent features as distributed dense vectors. Recurrent neural network (RNN) [16] and its variants long-short term memory (LSTM) [17] have been successfully used in various sequence prediction problems, such as general domain NER [18, 19], language modeling [20, 21] and speech recognition [22]. Meanwhile, recent advances in word embedding induction methods [12, 23–25] have benefited researchers in two ways: (1) Intuitively, word embeddings can be used as extra word features in existing natural language processing (NLP) systems, including the general domain [26] and biomedical domain [27, 28], to improve the performance, and (2) they have enabled more effective training of RNNs by representing words with low dimensional dense vectors. which can capture distributional syntactic and semantic information [29, 30]. In this paper, we propose a neural network architecture for BNER. Without any external resources or hand-crafted features, our neural network method can be successfully used for this task. To capture morphological and orthographic information of words, we first use an attention model to encode character information of a word into its character-level representation. Then we combine character- and word-level representations and then feed them into the LSTM-RNN layer to model context information of each word. On top of the neural network architecture, we use a CRF layer to jointly decode labels for the whole sentence. Several word embeddings trained from different external sources are used in our LSTM-RNN models. We evaluate our model on two BNER shared tasks — BioCreative II GM task and JNLPBA 2004 task. Experimental results on both corpus show that domain-specific pre-trained word embeddings and character-level representation can improve the performance of the LSTM-RNN models. Although our models use character embeddings and word embeddings as the only features, the bidirectional LSTM-RNN(BLSTM-RNN) model achieves state-of-the-art performance on both corpora.

Methods

We regard BNER as a sequence labeling problem following previous work. The commonly used BIEOS tagging schema (B-beginning, I-inside, E-end, O-outside and S-the single word entity) is used to identify the boundary information of the entities.

Overall architecture

Figure 1 illustrates the overall architecture of our approach.
Fig. 1

The model architecture

The model architecture The input layer calculates the representation of input words based on both word and character embeddings. An attention model is used to compute the character-level representation of the word with the character embeddings as inputs. Then we combine the character representation and word embedding to get the feature representation of each word in the sentence. The extracted features of each word are then passed through non-linear LSTM-RNN hidden layer, which is designed to combine the local and contextual information of a word. The forward LSTM and the backward LSTM can also be integrated into this layer. A nonlinear hidden layer f 1 follows to form more complex features automatically. Finally, the output vectors of the neural network are fed into a CRF layer. For a given input sentence, we model the label sequence jointly using the CRF, which considers the correlations between labels in neighborhoods.

Input layer

Given an input sentence s as an ordered list of m words { w 1, w 2... w }, the input representation of the LSTM-RNN layers is computed based on both word and character embeddings. To obtain the character representation of the word w , we denote the character sequence of w with { c 1, c 2... c }, where c is the jth character. The character embedding lookup table function is used to map each character c into its character embedding . Then we use an attention model [31] to combine the character embeddings {, ... } for w . In this model, , where is the character representation of w , is the weight for , ⊙ is the Hadamard product function and . Each is computed based on both the word embedding of the current word w and the character embedding window around the current character . where ⊕ is the vector concatenation function and is the embedding of the current word w . W ,W ,U ,b and b are mode parameters. We combine the character representation and word embedding to form the representation : . Finally, the input representation of the LSTM-RNN layer is computed by a window function: .

Long short-term memory RNN

The RNNs in this section are neural networks, which have recurrent connections and allow a form of memory. This makes them captures information about what has been calculated so far. They compute compositional vector representations for the input word sequences. These distributed representations are then used as features to predict the label of each token in the sentence. Although RNNs can, in principle, model long-range dependencies, training them is difficult in practice, likely due to the vanishing and exploding gradient problem [32]. In this paper, we apply Long Short-Term Memory (LSTM) [17] to this task. LSTMs are variants of the above RNNs, with the recurrent hidden layer updates in RNNs are replaced with the special memory units. They have been shown to be better at capturing long range dependencies in the sequence data.

Bidirectionality

With the definition of LSTM described above, we can see that the hidden state at time t only captures information from the past. However, both past (left) and future (right) information could also be beneficial for our task. In the sentence “Characterization of thyroid hormone receptors in human IM-9 lymphocytes.”, it helps to tag the word “thyroid” as B-protein, if the LSTMs know the following word is “receptors”. To incorporate the future and past information, we extend LSTM with bidirectional approach, referred as the bidirectional LSTM [33], which allow bidirectional links in the network. Two separate hidden states and are used to represent the forward and backward sequence respectively. Finally, we combine the features from the forward and backward LSTMs by an hidden layer f 1. The final output hidden layer h is computed as follows: where is the forward LSTM layer and is the backward LSTM layer. W and b denote the weight matrix and bias vector in the hidden layer f 1. The output feature representation h is then fed into the CRF layer and captures both the future and past information.

CRF

For sequence labeling (or general structured prediction) tasks, it is beneficial to consider the correlations between labels in neighborhoods, and jointly decode the best chain of labels for a given input sentence. We model label sequence jointly using a CRF [34], instead of decoding each label independently. For an input sentence x=x 1,…,x , the corresponding hidden sequence h=h 1,…,h is output by the above neural networks. We consider the matrix F of scores and θ is a model parameter of the CRFs. In the matrix F, the element f represents the score for the t-th word with the i-th tag. We introduce a transition score [A], which is also a model parameter, to model the transition from the j-th tag to the k-th tag. The score of the sentence along with a label sequence is computed by summing the transition scores and network output scores: Then given the sentence x, the conditional probability of a label sequence y is defined by the following form: where Y(x) denotes all the possible label sequences for the sentence x. The label sequence with the highest score is the predicted sequence for sentence x: For the CRF model, decoding can be solved efficiently by adopting the Viterbi algorithm.

Training

Max likelihood objective are used to train our model. The parameters Θ is the parameter set in our model. It consists of the parameters W and b of each neural layer, and the model parameters in the CRF layer. Given the training examples set , the log-likelihood objective function is defined as: where logP(y |x ) is the log probability of y and λ is a regularization parameter. To maximum the objective, we use online learning to train our model, and the AdaGrad algorithm [35] is used to update the model parameters. The parameter update at time t for the j-th parameter θ is defined as follows: where α is the initial learning rate, and g is the subgradient for the j-th parameter at time τ.

Word embedding

Word embeddings are distributed representations and capture distributional syntactic and semantic information of the word. Several types of word embeddings trained from different external sources are used in our LSTM-RNN models. Here we will give a brief description of these pre-trained word embeddings.

SENNA

Collobert et al. (2011) [12] propose a neural network framework for various NLP tasks. To give their network a better initialization, they introduce a new neural network model to compute the word embeddings. The main idea for the neural network is to output high scores for positive examples and low scores for negative examples. The positives example are the word windows in a large unlabeled corpus, and the negative examples are the windows where one word is replaced by a random word. They releases the word embeddings with the 130K vocabulary words [36]. The dimension of the SENNA word embedding is 50 and they are trained for about 2 months, over English Wikipedia.

Word2vec

Another start-of the-art method word2vec [23, 24] can be used to learn word embeddings from large corpus efficiently. They propose the continuous bag-of-words (CBOW)model and the skip-gram model for computing word embeddings. They release pre-trained vectors with 3 million vocabulary words. The dimension of the word2vec word embeddings is 300 and the training corpus is part of Google News dataset [37].

Biomedical embeddings

Since we work on biomedical text, which is different from the above general domain corpora, domain-specific embeddings are trained using the word2vec CBOW model from a set of unannotated data. The corpus contains all full-text documents from the PubMed Central Open Access subset [38]. For comparison with SENNA and Google word2vec embeddings, we learn word embeddings (vocabulary size 5.86 million) of 50- and 300-dimensions using the word2vec tool [23, 24].

Results and discussion

Data sets

We evaluate our neural network model on two publicly available corpora: the BioCreAtIvE II GM corpus and JNLPBA corpus, for system comparison with existing BNER tools. The GM corpus consists of 20,000 sentences (15,000 sentences for training and 5000 sentences for test) from MEDLINE, where gene/gene product names(grouped into only one semantic type) were manually annotated. On the other hand, the JNLPBA corpus consists of 22,402 sentences (18,546 training sentences and 3856 test sentences) from MEDLINE abstracts. The manual annotated entities in JNLPBA corpus contains five types, namely DNA, RNA, protein, cell line, and cell type. In addition,10% of the training set are randomly split as the development data to tune hyper-parameters during training. Table 1 shows the statistics of the two corpora.
Table 1

Statistics of the datasets

TrainingDevTest
GM
  Sentences1350015005000
  One-word Entities70518052831
  Multi-word Entities935510473494
  Total Entities1640618526325
JNLPBA
  Sentences1669118553856
  One-word Entities1947621703466
  Multi-word Entities2676528905196
  Total Entities4624150608662
Statistics of the datasets

Evaluation metric

We evaluate the results in the same way as the two shared tasks, using precision (P), recall (R) and F1 score (F1): where TP is the number of correct spans that the system returns, FP is the number of incorrect spans that the system returns, and FN is the number of missing spans. Note that alternative annotations generated by human annotators in the GM corpus will also count as true positives. We evaluate the result on the GM coups using the official evaluation script.

Neural network settings

Pre-processing

We transform each number with NUM and lowercase all words in the pre-process step. We also mark the words, which are not in the word embedding vocabulary, as UNKNOWN.

Parameters

Character embeddings are randomly initialized with uniform samples from range [0,1] and we set the dimension of character embeddings to 30. For each neural layer in our neural network model, parameters W and b are randomly initialized with uniform samples from , , where nr and nc are the number of rows and columns of W. The initial learning rate for AdaGrad is 0.01 and the regularization parameter is set to 10−8. The dimension of the single RNN hidden layer h 1 is 100 and the size of hidden layers f 1 connected to RNN hidden layer h 2 is set to be 100. Tuning the hidden layer sizes can not significantly impact the performance of our model.

Code

The C++ implementations of our proposed models are based on the LibN3L package [39], which is a deep learning toolkit in C++.

Experimental results

Table 2 presents our results on BioCreative II GM and JNLPBA data sets for various LSTM-RNNs and word embeddings.
Table 2

Results for various LSTM-RNNs and word embeddings on the GM and JNLPBA data sets

SystemsDim.GM (P/R/F1 score)JNLPBA (P/R/F1 score)
LSTM-RNN
  +SENNA5083.87/80.46/82.1367.50/72.52/69.92
  +Biomedical5085.85/84.09/84.9670.69/74.80/72.69
  +Google30083.90/82.80/83.3569.19/72.56/70.83
  +Biomedical30086.66/85.58/86.1270.34/74.96/72.58
  +Random30083.63/76.56/79.9466.96/71.46/69.13
BLSTM-RNN
  +SENNA5084.29/79.83/82.0067.00/71.60/69.22
  +Biomedical5088.42/82.63/85.4371.04/74.45/72.71
  +Google30085.02/82.04/83.5068.59/73.99/71.19
  +Biomedical30087.85/85.29/86.5571.24/76.53/73.79
  +Random30082.87/77.65/80.1868.43/70.98/69.68
Results for various LSTM-RNNs and word embeddings on the GM and JNLPBA data sets

Contributions of word embeddings in LSTMs

In our LSTM framework, word embeddings are used to avoid feature engineering efforts, and these embeddings are not fine-tuned in the experiments above. Despite using these pretrained word embeddings, we can also randomly initialize the word embedding in the neural network. To show the contributions of word embeddings, we perform experiments with different pretrained word embeddings, as well as a random initialization embeddings. According to the results in Table 2, models using pretrained word embeddings significantly performs better than the Random ones by providing better initialization, with the maximum gains of 6.37% on GM and 4.11% on JNLPBA by BLSTM + Biomedical (300 dim.). The results are significant at p<10−3 by pair-wise t-test. For different pretrained embeddings, the domain-specific biomedical embeddings (300 dim.) achieve best results in all cases. For example, BLSTM-RNN using biomedical embeddings (300 dim.) outperforms the SENNA (50 dim.) ones, with the gain of 4.55% (p<10−3) on GM and 4.57% (p<10−3) on JNLPBA. The possible reasons are that:(1) it is trained on the biomedical domain corpus and (2) high dimensional embeddings may capture more information compared with the low dimensional ones. Biomedical embeddings (300 dim.) can capture more syntactic and semantic information, and improves the performance on this task.

Comparison between bidirectional and unidirectional

When we compare the uni-directional LSTM-RNNs with their bidirectional counterparts, we can see that the bidirectional improves the performance. BLSTM significantly outperforms LSTM with the maximum gains of 0.43% on GM and 1.21% on JNLPBA by BLSTM-RNN + Biomedical (300 dim.). However, these improvements does not meet our expectation. When we analyze the data set, we find it to be unsurprising because of the span distribution in the data set. The average span of the named entity mentions in JNLPBA data set is two words, and 40.0% of the mentions only contain one word. Despite these named entity mentions, there are still 15.4% of the mentions whose span is more than 3. Therefore, the information captured by the bidirectional link helps to correctly recognize these mentions.

Effects of fine-tuning word embeddings

Table 3 shows the F1 score of LSTM-RNN and BLSTM-RNN, when the embeddings are not fine-tuned in the training process, and when they are learned as part of model parameters (fine-tuned) in the task.
Table 3

Effects of fine-tuning word embeddings in LSTM-RNN and BLSTM-RNN

SystemsDim.GMJNLPBA
LSTM-RNN+tune-tune+tune-tune
  +SENNA5085.6982.1370.5669.92
  +Biomedical5085.3384.9671.7872.69
  +Google30085.6583.3571.1370.83
  +Biomedical30084.5686.1272.0472.58
  +Random30084.7479.9471.1069.13
BLSTM-RNN+tune-tune+tune-tune
  +SENNA5086.8182.0072.0969.22
  +Biomedical5085.2485.4372.2872.71
  +Google30086.5283.5073.0371.19
  +Biomedical30084.5386.5573.4473.79
  +Random30084.9480.1871.8169.68
Effects of fine-tuning word embeddings in LSTM-RNN and BLSTM-RNN Considering SENNA, Google and Random embeddings, fine-tuning these three embeddings in our LSTM framework significantly outperforms the non-tuned settings, with a maximum absolute gain of 4.81% (p<10−3) on GM and 2.87% (p<10−3) on JNLPBA by BLSTM + SENNA. These embeddings are not good initialization for our neural model, and fine-tuning them in our LSTM framework can improve the performance on this task. The likely reason is that these embeddings are trained on general domain or randomly initialization, and may have much noise for this task. Remarkably, fine-tuning brings the performance of Random initialization close to the best ones. Considering the domain-specific biomedical embeddings, using them without fine-tuning significantly performs better that the fine-tuned ones, with a maximum absolute gain of 2.02% (p<10−3) on GM by BLSTM + Biomedical (300 dim.). Fine-tuning the biomedical embeddings is not necessary in our model, and it may cause slight overfitting and reduce the performance.

Effects of character representation

Figure 2 shows the effects of character representation in our LSTM framework for each data set. Biomedical embeddings (300 dim.) are used in our experiments without fine-tuning.
Fig. 2

Effects of character representation. +Char — with character representation; -Char — without character representation. a LSTM-RNN, b BLSTM-RNN

Effects of character representation. +Char — with character representation; -Char — without character representation. a LSTM-RNN, b BLSTM-RNN From the Fig. 2, we observe an essential improvement on both data sets. Compared with the model without character representation, the model with character representation improves the F1 score with the gain of 2.3% on GM and 1.7% on JNLPBA by BLSTM. It demonstrates the effectiveness of character representation in BNER.

Effects of the CRFs

In this section, we conduct the experiments to show the effects of the CRF layer in our framework. Instead of the CRFs, softmax classfier can be also used to predict the label of each token based on the feature representation output by our LSTM framework. The softmax classfier layer calculates the probability distribution over all labels and chooses the label with highest probability for each word. Table 4 shows the performance of BLSTM-RNN models with and without the CRF layer. Biomedical embeddings (300 dim.) are used in the experiments without fine-tuning. We can see that the CRF layer significantly (p<10−3) improves the performance with the gain of 3.91% on GM and 1.86% on JNLPBA.
Table 4

Comparison of systems with and without the CRF layer

SystemsGMJNLPBA
BLSTM-RNN82.6471.93
BLSTM-RNN+CRF86.5573.79
Comparison of systems with and without the CRF layer The improvements show that although BLSTM is considered to have the ability of handing sequential data and can automatically model the context information, it is still not enough. And the CRF layer, which jointly decode label sequences, helps to benefit the performance of the LSTM models in BNER.

Feature representation plotting

Although neural networks have been successfully used for many NLP tasks, the feature representation of the NN models is difficult to understand. Inspired by the work of Li et al. (2016) [40], which visualizes and understands phrase/sentence representation for sentiment analysis and text generation, we conduct the experiment to visualize the feature representation in our LSTM models for BNER. Figure 3 shows the heat map of the feature representations of some context in two sentences. The representations are the input features of the CRF layer in our framework. The BLSTM + Biomedical (300 dim.) model is used in the experiments.
Fig. 3

Feature representation of our model. Each column indicates the feature representation from BLSTM for each token. Each grid in the column indicates each dimension of the feature representation. The dimension of the feature representation is 100

Feature representation of our model. Each column indicates the feature representation from BLSTM for each token. Each grid in the column indicates each dimension of the feature representation. The dimension of the feature representation is 100 These two cases are namely “the inability of this factor to activate in vivo the...” and “In particular, naturally occurring sequence variation impacted transcription factor binding to an activating transcription factor / cAMP response element...”. In the first context, the word “factor” occurs in a general noun phrase without any descriptive words and is not identified as an entity. While in the second context, two entity mentions, namely “transcription factor” and “activating transcription factor”, are recognized with the Protein type. The representation of the word “factor” in the first sentence is different from the entity mentions in the second sentence. In particular, Fig. 4 shows the heat map of the feature representation of the word “factor”. Our LSTM model outputs different representation for it in different context. We can see that the representation difference between the word “factor1” and the other two words “factor2” and “factor3” is apparent. While the representation of the words “factor2” and “factor3”, both recognized as part of entities, are similar.
Fig. 4

Feature representation of the word “factor”. “factor1” is the word in the first sentence. “factor2” and “factor3” are the corresponding words in the second sentence. Each vertical bar indicates one dimension of the feature representation for the corresponding word

Feature representation of the word “factor”. “factor1” is the word in the first sentence. “factor2” and “factor3” are the corresponding words in the second sentence. Each vertical bar indicates one dimension of the feature representation for the corresponding word This is an initial experiment for understanding the ability of our feature representation to predict the label in BNER task. More strategies for understanding and visualizing neural models need to be explored in future work.

Comparison with previous systems

Tables 5 and 6 illustrate the results of our model on the GM and JNLPBA corpus respectively, together with previous top performance systems for comparison. IBM [41] and Infocomm [8] are the best systems participating in BioCreative II GM task and JNLPBA task respectively.
Table 5

Results of our model on the GM corpus, together with top-performance systems

SystemsP/R/F1
BLSTM + Biomedical (300 dim.) 87.85/85.29/86.55
AIIAGMT [5] 88.95/87.65/88.30
IBM [41]88.48/85.97/87.21
Gimli [3]90.22/84.82/87.17
BANNER [6]88.66/84.32/86.43
NERSuite [4]88.81/82.34/85.45
Li et al. (2015) [30]83.29/80.50/81.87
NERBio [7]92.67/68.91/79.05
Table 6

Results of our model on the JNLPBA corpus, together with top-performance systems

SystemsP/R/F1
BLSTM + Biomedical (300 dim.) 71.24/76.53/73.79
NERBio [7] 72.01/73.98/72.98
Infocomm [8]69.42/75.99/72.55
Gimli [3]72.85/71.62/72.23
NERSuite [4]69.95/72.41/71.16
Results of our model on the GM corpus, together with top-performance systems Results of our model on the JNLPBA corpus, together with top-performance systems IBM [41] uses semi-supervised machine learning method and forward and backward model combination, while Infocomm [8] combines HMM and SVM model to tackle this task. CRFs are widely used in BNER-shared tasks and have shown the state-of-the-art performance [3-7]. The performance of these systems depends on manually extracted rich features. Note that these systems use complex features like orthographic, morphological, linguistic features and many more in their models, some of which rely on external resources. In addition, some systems also use model combination strategy and integrate post-processing modules, including abbreviation resolution and parentheses correction. Our LSTM-RNNs only use character representation and word embeddings as input features, avoiding manual feature engineering. In recent years, deep neural network architectures have been proposed and successfully applied to BNER. Li et al. (2015) [30] applies extended Elman-type RNN to this task and the results on BioCreative II GM data set show that extended RNN outperforms CRF, deep neural networks and original RNN. On the GM corpus, our model achieves 4.68% improvements of F1 score over Li et al. (2015) [30], which is a neural network model using used softmax function to predict which tag the current token belongs to. This demonstrates the effectiveness of our Bi-LSTM-CRF for this task and the importance of character representation. Comparing with traditional statistical models, our best model BLSTM+Biomedical (300 dim.) gives competitive results on F1 score. Considering the JNLPBA corpus, our best model BLSTM+Biomedical outperforms all these previous systems, with a significant improvement of 0.81% over the NERBio system.

Error analysis

For BNER task, the errors contain two categories, including false positives (FP) and false negatives (FN). The entities in JNLPBA corpus contain five types, while the entities in GM corpus are grouped into only one type. We analyze the errors on the JNLPBA test set and report the results in this section. Both FP and FN errors can be further divided into two types: 1) Boundary errors, in which the boundary of an entity is incorrectly identified. 2) Type errors, in which the boundary of an entity is correct but its type is incorrectly identified. Table 7 shows the statistics of error analysis. The boundary errors are the main errors and constitute more than 80% of all errors in both FP and FN errors.
Table 7

Error analysis on JNLPBA test set

Error type%
FPBoundary errors49.31
Type errors7.52
FNBoundary errors35.66
Type errors7.52
Error analysis on JNLPBA test set We further distinguish these errors into the following categories: 1) Left boundary errors. These errors are recognized with wrong left boundary and correct right boundary. The recognized entities often include too many details (“cytosol estradiol receptors” rather than just “estradiol receptors”) or too few (“B lineage genes” instead of “many B lineage genes”). In these errors, some words, such as “factor” and “protein”, are very useful indictors for entity mentions with the type Protein. While some words, such as “genes” and “sites”, are useful for entity recognition with the type DNA. The right boundary is correctly recognized in these cases and it is difficult for us to determine whether the descriptive words are parts of the entity mentions (e.g. “normal” in “normal human lymphocytes”). 2) Coordinate entity errors. The coordinate entity names, such as “upstream promoter or enhancer element” and “NF-kappa B and AP-1 binding sites”, are often combined with some coordinating conjunctions. It is difficult to distinguish whether they are one whole entity or not. For example, “upstream promoter or enhancer element [DNA]” is identified as two entities “upstream promoter [DNA]” and “enhancer element [DNA]” by our system. There are also some apposition entities, such as “transcription factor NF-kappa B” and they are frequently recognized as two individual entities (e.g. “transcription factor [Protein]” and “NF-kappa B [Protein]” instead of “transcription factor NF-kappa B [Protein]”) by our system. This may be rational due to the following reasons: First, the components of the entities are frequently annotated as an individual entity when they occur alone in the corpus. For example, both “transcription factor” and “NF-kappa B” are often annotated with the type Protein. Second, these errors are mainly caused by the corpus annotation inconsistency. The above coordinate entities are annotated as one whole entity in some sentences. While in other sentences, these entity mentions are annotated as multiple individual entities. 3) Missing entities. They include the annotated entities, which are not matched (or overlapped) with any recognized entities. We find that 49.1% of these errors come from the Protein type and 48.3% of them are one word entities on the JNLPBA corpus. Among these errors, some general noun words (e.g. “antibodies” and “receptors”) are annotated as biomedical entities. In addition, abbreviations, such as “EZH2” and “IL-5”, can not be recognized by our model in some context. The missing entities on the JNLPBA data occur with a similar percentage on the GM data set. These errors are involved in 8.51% of all the entities on the JNLPBA corpus, while the percentage of the missing entities on the GM corpus is 9.72%. As to the single word entities, the percentage of them in the missing errors is 48.3% on the JNLPBA corpus, while the percentage of them on the GM corpus is 54.6%. The likely reason for the similar percentage is that Protein is the main type on the JNLPBA data and 58.5% of the entities come from the Protein type. The character representation helps to improve the model for the single word entities. When removing the character representation from our model, the percentage of the single word entities in the missing errors will increase from 48.3 to 56.4% on the JNLPBA corpus. In the future, more contextual information should be considered to improve the BNER. 4) Classification errors. They include the errors with correct boundary match but wrong type identification. We find that 35.6% of the errors are caused by misclassification of the Cell_type type to the Cell_line type and 31.5% of the errors are the misclassification of the DNA type to the Protein type, e.g. “IRF1 [Protein]” instead of “IRF1 [DNA]”. It is difficult to distinguish them, because of the sense ambiguity of these biomedical named entities. From the above analysis, we find that some errors on the JNLPBA data are caused by the corpus annotation inconsistency. Considering the GM data, the F1 score of our model increases from 77.5 to 86.6% with the alternative annotations. Although our model achieves state-of-the-art performance on the JNLPBA corpus, more contextual information and external knowledge should be considered to improve the BNER.

Conclusions

In this paper, we present a neural network architecture for this task. Our model can be successfully used for BNER task without any feature engineering effort. In order to evaluate our neural network model and compare it to other existing BNER systems, we use two commonly used corpora: GM and JNLPBA. Our best model BLSTM+Biomedical (300 dim.) model achieves F1 score results of 86.55% and 73.79% on each corpus, respectively. Experimental results on both corpora demonstrate that pre-trained word embeddings and character representation both improve the performance of the LSTM-RNN models. Although our models use word embeddings and character embeddings as the only features, we achieve comparable performance on the GM corpus, comparing with other systems using complex hand-crafted features. Considering the JNLPBA corpus, our model achieves the best results, outperforming these previously top performing systems. In the future, we will explore the effects of adding depth to the LSTM layers. In this paper, our LSTM framework only contains one LSTM hidden layer. We can design multiple LSTM hidden layers and higher LSTM layers may help to exploit more effective features in deeper networks. Another direction is that we plan to apply our method to other related tasks, such as biomedical relation extraction. We would also like to explore to jointly model these tasks in the RNN-based framework.
  11 in total

1.  BioThesaurus: a web-based thesaurus of protein and gene names.

Authors:  Hongfang Liu; Zhang-Zhi Hu; Jian Zhang; Cathy Wu
Journal:  Bioinformatics       Date:  2005-11-02       Impact factor: 6.937

2.  NERBio: using selected word conjunctions, term normalization, and global patterns to improve biomedical named entity recognition.

Authors:  Richard Tzong-Han Tsai; Cheng-Lung Sung; Hong-Jie Dai; Hsieh-Chuan Hung; Ting-Yi Sung; Wen-Lian Hsu
Journal:  BMC Bioinformatics       Date:  2006-12-18       Impact factor: 3.169

3.  Learning long-term dependencies with gradient descent is difficult.

Authors:  Y Bengio; P Simard; P Frasconi
Journal:  IEEE Trans Neural Netw       Date:  1994

4.  BANNER: an executable survey of advances in biomedical named entity recognition.

Authors:  Robert Leaman; Graciela Gonzalez
Journal:  Pac Symp Biocomput       Date:  2008

5.  Long short-term memory.

Authors:  S Hochreiter; J Schmidhuber
Journal:  Neural Comput       Date:  1997-11-15       Impact factor: 2.026

6.  Gimli: open source and high-performance biomedical name recognition.

Authors:  David Campos; Sérgio Matos; José Luís Oliveira
Journal:  BMC Bioinformatics       Date:  2013-02-15       Impact factor: 3.169

7.  Deep convolutional neural networks for annotating gene expression patterns in the mouse brain.

Authors:  Tao Zeng; Rongjian Li; Ravi Mukkamala; Jieping Ye; Shuiwang Ji
Journal:  BMC Bioinformatics       Date:  2015-05-07       Impact factor: 3.169

8.  Evaluating word representation features in biomedical named entity recognition tasks.

Authors:  Buzhou Tang; Hongxin Cao; Xiaolong Wang; Qingcai Chen; Hua Xu
Journal:  Biomed Res Int       Date:  2014-03-06       Impact factor: 3.411

9.  Integrating high dimensional bi-directional parsing models for gene mention tagging.

Authors:  Chun-Nan Hsu; Yu-Ming Chang; Cheng-Ju Kuo; Yu-Shi Lin; Han-Shen Huang; I-Fang Chung
Journal:  Bioinformatics       Date:  2008-07-01       Impact factor: 6.937

10.  Overview of BioCreative II gene mention recognition.

Authors:  Larry Smith; Lorraine K Tanabe; Rie Johnson nee Ando; Cheng-Ju Kuo; I-Fang Chung; Chun-Nan Hsu; Yu-Shi Lin; Roman Klinger; Christoph M Friedrich; Kuzman Ganchev; Manabu Torii; Hongfang Liu; Barry Haddow; Craig A Struble; Richard J Povinelli; Andreas Vlachos; William A Baumgartner; Lawrence Hunter; Bob Carpenter; Richard Tzong-Han Tsai; Hong-Jie Dai; Feng Liu; Yifei Chen; Chengjie Sun; Sophia Katrenko; Pieter Adriaans; Christian Blaschke; Rafael Torres; Mariana Neves; Preslav Nakov; Anna Divoli; Manuel Maña-López; Jacinto Mata; W John Wilbur
Journal:  Genome Biol       Date:  2008-09-01       Impact factor: 13.583

View more
  16 in total

1.  Learning Tasks of Pediatric Providers from Electronic Health Record Audit Logs.

Authors:  Barrett Jones; Xinmeng Zhang; Bradley A Malin; You Chen
Journal:  AMIA Annu Symp Proc       Date:  2021-01-25

2.  Improving deep learning method for biomedical named entity recognition by using entity definition information.

Authors:  Ying Xiong; Shuai Chen; Buzhou Tang; Qingcai Chen; Xiaolong Wang; Jun Yan; Yi Zhou
Journal:  BMC Bioinformatics       Date:  2021-12-17       Impact factor: 3.169

3.  Exploring deep learning methods for recognizing rare diseases and their clinical manifestations from texts.

Authors:  Isabel Segura-Bedmar; David Camino-Perdones; Sara Guerrero-Aspizua
Journal:  BMC Bioinformatics       Date:  2022-07-06       Impact factor: 3.307

4.  Extraction of chemical-protein interactions from the literature using neural networks and narrow instance representation.

Authors:  Rui Antunes; Sérgio Matos
Journal:  Database (Oxford)       Date:  2019-01-01       Impact factor: 3.451

Review 5.  Recent advances in biomedical literature mining.

Authors:  Sendong Zhao; Chang Su; Zhiyong Lu; Fei Wang
Journal:  Brief Bioinform       Date:  2021-05-20       Impact factor: 11.622

6.  A hybrid approach for named entity recognition in Chinese electronic medical record.

Authors:  Bin Ji; Rui Liu; Shasha Li; Jie Yu; Qingbo Wu; Yusong Tan; Jiaju Wu
Journal:  BMC Med Inform Decis Mak       Date:  2019-04-09       Impact factor: 2.796

7.  A hybrid neural network model for predicting kidney disease in hypertension patients based on electronic health records.

Authors:  Yafeng Ren; Hao Fei; Xiaohui Liang; Donghong Ji; Ming Cheng
Journal:  BMC Med Inform Decis Mak       Date:  2019-04-04       Impact factor: 2.796

8.  Computational identification of vesicular transport proteins from sequences using deep gated recurrent units architecture.

Authors:  Nguyen Quoc Khanh Le; Edward Kien Yee Yapp; N Nagasundaram; Matthew Chin Heng Chua; Hui-Yuan Yeh
Journal:  Comput Struct Biotechnol J       Date:  2019-10-25       Impact factor: 7.271

9.  BioVerbNet: a large semantic-syntactic classification of verbs in biomedicine.

Authors:  Olga Majewska; Charlotte Collins; Simon Baker; Jari Björne; Susan Windisch Brown; Anna Korhonen; Martha Palmer
Journal:  J Biomed Semantics       Date:  2021-07-15

10.  Deep neural model with self-training for scientific keyphrase extraction.

Authors:  Xun Zhu; Chen Lyu; Donghong Ji; Han Liao; Fei Li
Journal:  PLoS One       Date:  2020-05-15       Impact factor: 3.240

View more

北京卡尤迪生物科技股份有限公司 © 2022-2023.