Abstract

In this article, an end-to-end system was proposed for the challenge task of disease named entity recognition (DNER) and chemical-induced disease (CID) relation extraction in BioCreative V, where DNER includes disease mention recognition (DMR) and normalization (DN). Evaluation on the challenge corpus showed that our system achieved the highest F1-scores 86.93% on DMR, 84.11% on DN, 43.04% on CID relation extraction, respectively. The F1-score on DMR is higher than our previous one reported by the challenge organizers (86.76%), the highest F1-score of the challenge.

Database URL: http://database.oxfordjournals.org/content/2016/baw077

Introduction

In recent years, chemicals (or drugs), diseases, and their relations have attracted considerable attention as they play important roles in many areas of biomedical research and healthcare such as biocuration, drug discovery and drug safety surveillance ( 1 ). Automatic recognition and normalization of chemical and disease mentions, and automatic extraction of chemical–disease relation (CDR) from literature have become more and more necessary because manual annotation of them is too expensive and insufficient to keep up with the rapid growth of literature.

In last few years, many attempts have been conducted to recognize such entities and to extract such relations automatically using natural language processing methods. However, automatic chemical and disease named entity recognition (DNER) and chemical–disease relation (CDR) extraction remain challenges. The lack of benchmark datasets has seriously limited the development of relative techniques as there is no fair comparison of systems. Through BioCreative V, a challenge task of automatic extraction of mechanistic and biomarker CDRs from the biomedical literature in support of biocuration, new drug discovery and drug safety surveillance was proposed to advance text-mining research on relationship extraction and provide practical benefits to biocuration ( 2 ). This task included two subtasks: DNER, including disease mention recognition (DMR) and normalization (DN), and chemical-induced disease (CID) relation extraction. DNER is a preliminary step for CID relation extraction. Beside DNER, chemical named entity recognition (CNER), including chemical mention recognition (CMR) and normalization (CN), is also a preliminary step. Therefore, the related work of CMR and CN was also introduced here.

Most CMR and DMR methods may fall into two categories: rule-based and machine learning-based. The rule-based methods define rules to find CMs and DMs from dictionaries such as Unified Medical Language System (UMLS) ( 3 ), ChEBI ( 4 ), Medical Subject Headings (MeSH) ( 5 ), PubChem ( 6 ), DrugBank ( 7 ) and Comparative Toxicogenomics Database (CTD) ( 8 ) by exact/approximate matching. For example, Vazquez et al . ( 9 ) proposed a rule-based system to detect drug and chemical compound mentions by building a dictionary about morphological characteristics of the mentions automatically for approximate matching. The machine learning-based methods ( 10–12 ) usually regard CMR and DMR as a sequence labeling problem and state-of-the-arts sequence labeling algorithms such as conditional random fields (CRFs) ( 13 ) were deployed to them. When ompared with the rule-based methods, the machine learning-based methods usually showed better performance.

Most current CN and DN systems are rule-based ( 14–16 ) such as tmChem ( 17 ), which defined a series of rules to match items in MeSH and ChEBI for CMs. A small number of normalization systems are based on machine learning methods. For example, DNorm ( 18 ), a DN system based on machine learning methods, regarded the normalization problem as an information retrieval problem and used a pairwise learning algorithm to get a ranked list of normalized names.

CID relation extraction is a relation extraction task similar with protein-protein interaction extraction ( 19 ) and drug side effect extraction ( 20 ). Three types of methods have been proposed for this problem: statistic-based ( 21 ), machine learning-based ( 22 ) and pattern learning-based ( 23 ). The statistic-based methods usually determine CID relations according to co-occurrence frequencies of chemical and disease pairs. The machine learning-based methods regard the CID relation extraction problem as a classification problem and the most popular algorithm used is support vector machines (SVMs). The pattern learning-based methods first extract and rank the syntactical patterns from sentences that contain known pairs from unsupervised corpus, and then discover new pairs based on their associated pattern scores.

In this study, we proposed an end-to-end system for the challenge of automatic extraction of mechanistic and biomarker CDRs, including three subsystems for CMR and DMR, CN and DN and CID relation extraction, respectively. Because CNER (i.e. CMR and CN) is a preliminary step of CID relation extraction, we also presented the performance of our system on CNER although it was not considered for system ranking in the challenge. Evaluation on the corpus of the challenge showed that our system achieved the highest F1-scores of 92.96% on CMR, 86.93% on DMR, 92.19% on CN, 84.11% on DN, 43.04% on CID relation extraction, respectively, higher than the ones reported by the challenge organizers because of post-challenge analysis and improvement.

Methods

Dataset

The CDR task organizers of BioCreative V manually annotated 1500 PubMed records, of which 1000 records were used as training and development sets, and the remaining 500 records were used as a test set. Each record consists of two sections: title and abstract, in which not only chemical and disease mentions with MeSH identifiers (IDs), but also CID pairs with relations (i.e. CID relations) were marked up ( 24 ). Figure 1 shows an example of annotated records (ID: 7468724), where the consecutive underlined words are CMs and DMs. The statistics of the datasets are listed in Table 1 , where ‘T&D’ denotes training and development, ‘DOC’ denotes documents, and ‘#*’ denotes the number of ‘*’.

Figure 1.

Example of annotated records.

Table 1.

Statistics of the dataset for the CDR task of BioCreative V.

Datasets# DOC # chemicals
# diseases
# CID relations
mentionIDmentionID
T&D1000105502973842638292050
Test50053851435442419881066
Datasets# DOC # chemicals
# diseases
# CID relations
mentionIDmentionID
T&D1000105502973842638292050
Test50053851435442419881066
Table 1.

Statistics of the dataset for the CDR task of BioCreative V.

Datasets# DOC # chemicals
# diseases
# CID relations
mentionIDmentionID
T&D1000105502973842638292050
Test50053851435442419881066
Datasets# DOC # chemicals
# diseases
# CID relations
mentionIDmentionID
T&D1000105502973842638292050
Test50053851435442419881066

Overview of Our System

Our system is an end-to-end system, composed of four modules: a pre-processing module, a module for CMR and DMR, a module for CN and DN, and a CID relation extraction module. Given a PubMed record with title and abstract, the preprocessing module first split it into sentences and tokenized the sentences. Then the CMR and DMR module extracted all CMs and DMs in each sentence. Subsequently, the CN and DN module mapped each extracted mention to a MeSH ID. Finally, the CID relation extraction module found out between which chemicals and diseases there had CID relations. We used the tokenization module of MedEx ( 25 ), a specific tool for medical information extraction, for sentence boundary detection and tokenization. The other three modules were presented in detail in the following sections. The system presented here was an improved version of our previous system submitted to the challenge after post-challenge analysis. The main improvement lies in CN and DN.

Chemical and disease mention recognition (CMR and DMR)

A stacked ensemble system was proposed for chemical and disease mention recognition (CDMR). CDMR was firstly recognized as a sequence labeling problem, and two individual sequence labeling modules: CRFs and structure support vector machines (SSVMs) were deployed. Then, a meta-classifier based on SVMs with a linear kernel (i.e. linear SVMs) was used to check whether a mention recognized by any one of the two previous sequence labeling modules was correct or not. The features used in both CRFs and SSVMs were the same, as shown in Table 2 .

Table 2.

Features used in two individual sequence labeling modules: CRFs and SSVMs.

FeatureDescription
Bag-of-words Unigrams: w0 , w−1 , w1 , w−2 , w0 ;
Bigrams: w−2w−1,w−1,w0,w0w1,w1w2 ;
Trigrams: w−2w−1w0,w−1w0w1,w0w1w2
wi is a token at position relative the current token.
Part-of-speech (POS) tags Unigrams: p0,p−1,p1,p−2,p2
Bigrams: p−2p−1,p−1p0,p0p1,p1p2 ;
Trigrams: p−2p−1,p0,p−1,p0,p1,p0,p1,p2
pi is a POS tag at position i relative the current token.
Combinations of tokens and POS tagsw−1p−2,w1p−1,w−1p0,w2p−1,w0p0,w0p1,w1p0,w1p1,w1p2 ,
Sentence informationLength of the current sentence; whether there is any bracket unmatched in the current sentence?
AffixesPrefixes and suffixes of the length from 1 to 5.
Orthographical featuresWhether the current word is an upper Caps word? Contains a digit or not? Has uppercase characters inside? Etc.
Word shapesAny or consecutive uppercase character(s), lowercase character(s), digit (s) and other character(s) in the current word is/are replaced by ‘A’, ‘a’, ‘#’ and ‘-’ respectively.
Section informationWhich section the current word belongs to, title or abstract?
Word representation features [5] Brown clustering ( https://github.com/percyliang/brown-cluster );Word2vec ( https://code.google.com/p/word2vec/ ).
Dictionary features Chemical dictionary: CTD, DrugBank, MeSH, Pharmacogenetics Knowledge Base (PharmGKB) ( 26 ), UMLS, and Wikipedia;
Disease dictionary: CTD, MeSH, UMLS, disease ontology ( 27 ), National Drug File Reference Terminology (NDF-RT) ( 28 ) and Wikipedia.
Frequency featuresWhether the frequency of the current word is higher than a given value (4 in our system) and the inverse document frequency of it is less than another given value (0.1 in our system)?
Character N-gramsCharacter N-grams (N = 1, 2, …, 4) within the current word.
FeatureDescription
Bag-of-words Unigrams: w0 , w−1 , w1 , w−2 , w0 ;
Bigrams: w−2w−1,w−1,w0,w0w1,w1w2 ;
Trigrams: w−2w−1w0,w−1w0w1,w0w1w2
wi is a token at position relative the current token.
Part-of-speech (POS) tags Unigrams: p0,p−1,p1,p−2,p2
Bigrams: p−2p−1,p−1p0,p0p1,p1p2 ;
Trigrams: p−2p−1,p0,p−1,p0,p1,p0,p1,p2
pi is a POS tag at position i relative the current token.
Combinations of tokens and POS tagsw−1p−2,w1p−1,w−1p0,w2p−1,w0p0,w0p1,w1p0,w1p1,w1p2 ,
Sentence informationLength of the current sentence; whether there is any bracket unmatched in the current sentence?
AffixesPrefixes and suffixes of the length from 1 to 5.
Orthographical featuresWhether the current word is an upper Caps word? Contains a digit or not? Has uppercase characters inside? Etc.
Word shapesAny or consecutive uppercase character(s), lowercase character(s), digit (s) and other character(s) in the current word is/are replaced by ‘A’, ‘a’, ‘#’ and ‘-’ respectively.
Section informationWhich section the current word belongs to, title or abstract?
Word representation features [5] Brown clustering ( https://github.com/percyliang/brown-cluster );Word2vec ( https://code.google.com/p/word2vec/ ).
Dictionary features Chemical dictionary: CTD, DrugBank, MeSH, Pharmacogenetics Knowledge Base (PharmGKB) ( 26 ), UMLS, and Wikipedia;
Disease dictionary: CTD, MeSH, UMLS, disease ontology ( 27 ), National Drug File Reference Terminology (NDF-RT) ( 28 ) and Wikipedia.
Frequency featuresWhether the frequency of the current word is higher than a given value (4 in our system) and the inverse document frequency of it is less than another given value (0.1 in our system)?
Character N-gramsCharacter N-grams (N = 1, 2, …, 4) within the current word.
Table 2.

Features used in two individual sequence labeling modules: CRFs and SSVMs.

FeatureDescription
Bag-of-words Unigrams: w0 , w−1 , w1 , w−2 , w0 ;
Bigrams: w−2w−1,w−1,w0,w0w1,w1w2 ;
Trigrams: w−2w−1w0,w−1w0w1,w0w1w2
wi is a token at position relative the current token.
Part-of-speech (POS) tags Unigrams: p0,p−1,p1,p−2,p2
Bigrams: p−2p−1,p−1p0,p0p1,p1p2 ;
Trigrams: p−2p−1,p0,p−1,p0,p1,p0,p1,p2
pi is a POS tag at position i relative the current token.
Combinations of tokens and POS tagsw−1p−2,w1p−1,w−1p0,w2p−1,w0p0,w0p1,w1p0,w1p1,w1p2 ,
Sentence informationLength of the current sentence; whether there is any bracket unmatched in the current sentence?
AffixesPrefixes and suffixes of the length from 1 to 5.
Orthographical featuresWhether the current word is an upper Caps word? Contains a digit or not? Has uppercase characters inside? Etc.
Word shapesAny or consecutive uppercase character(s), lowercase character(s), digit (s) and other character(s) in the current word is/are replaced by ‘A’, ‘a’, ‘#’ and ‘-’ respectively.
Section informationWhich section the current word belongs to, title or abstract?
Word representation features [5] Brown clustering ( https://github.com/percyliang/brown-cluster );Word2vec ( https://code.google.com/p/word2vec/ ).
Dictionary features Chemical dictionary: CTD, DrugBank, MeSH, Pharmacogenetics Knowledge Base (PharmGKB) ( 26 ), UMLS, and Wikipedia;
Disease dictionary: CTD, MeSH, UMLS, disease ontology ( 27 ), National Drug File Reference Terminology (NDF-RT) ( 28 ) and Wikipedia.
Frequency featuresWhether the frequency of the current word is higher than a given value (4 in our system) and the inverse document frequency of it is less than another given value (0.1 in our system)?
Character N-gramsCharacter N-grams (N = 1, 2, …, 4) within the current word.
FeatureDescription
Bag-of-words Unigrams: w0 , w−1 , w1 , w−2 , w0 ;
Bigrams: w−2w−1,w−1,w0,w0w1,w1w2 ;
Trigrams: w−2w−1w0,w−1w0w1,w0w1w2
wi is a token at position relative the current token.
Part-of-speech (POS) tags Unigrams: p0,p−1,p1,p−2,p2
Bigrams: p−2p−1,p−1p0,p0p1,p1p2 ;
Trigrams: p−2p−1,p0,p−1,p0,p1,p0,p1,p2
pi is a POS tag at position i relative the current token.
Combinations of tokens and POS tagsw−1p−2,w1p−1,w−1p0,w2p−1,w0p0,w0p1,w1p0,w1p1,w1p2 ,
Sentence informationLength of the current sentence; whether there is any bracket unmatched in the current sentence?
AffixesPrefixes and suffixes of the length from 1 to 5.
Orthographical featuresWhether the current word is an upper Caps word? Contains a digit or not? Has uppercase characters inside? Etc.
Word shapesAny or consecutive uppercase character(s), lowercase character(s), digit (s) and other character(s) in the current word is/are replaced by ‘A’, ‘a’, ‘#’ and ‘-’ respectively.
Section informationWhich section the current word belongs to, title or abstract?
Word representation features [5] Brown clustering ( https://github.com/percyliang/brown-cluster );Word2vec ( https://code.google.com/p/word2vec/ ).
Dictionary features Chemical dictionary: CTD, DrugBank, MeSH, Pharmacogenetics Knowledge Base (PharmGKB) ( 26 ), UMLS, and Wikipedia;
Disease dictionary: CTD, MeSH, UMLS, disease ontology ( 27 ), National Drug File Reference Terminology (NDF-RT) ( 28 ) and Wikipedia.
Frequency featuresWhether the frequency of the current word is higher than a given value (4 in our system) and the inverse document frequency of it is less than another given value (0.1 in our system)?
Character N-gramsCharacter N-grams (N = 1, 2, …, 4) within the current word.

In the meta-classifier, a variety of features were used to describe the agreement and consistency between the previous modules. Each mention predicted by a sequence labeling module was compared with all other mentions in the same or adjacent position. For each pair of mentions, we extracted the following eight features:

  • If the text spans match

  • If the text spans partially match (any word overlap)

  • If the text spans match and concept types match

  • If the text spans partially match and the concept types match

  • If the text spans have the same start position

  • If the text spans have same end position

  • If one text span subsumes the other

  • If one text spans are subsumed by the other

Furthermore, given a mention, how many modules predicted it and which module predicted it were also taken into account.

Chemical and disease normalization (CDN: CN and DN)

As there were quite a few abbreviations among CMs and DMs such as ‘CAD’, standing for ‘coronary artery disease’ and a CM or DM may have aliases, e.g. ‘ischemic heart disease’, ‘atherosclerotic heart disease’, ‘atherosclerotic cardiovascular disease’ and ‘coronary artery disease’ stand for the same disease, we first completed the abbreviations, then normalized the full names or did not, and finally mapped them to MeSH IDs. Figure 2 shows the workflow of the normalization module in our system, where the “name normalization” in the grey box is an extra option.

Figure 2.

Workflow of our normalization module.

We used Ab3P ( 29 ) to find full names of abbreviations from records, MeSH WebSearch API ( http://eutils.ncbi.nlm.nih.gov/ ) and Wikipedia API ( http://www.wikipedia.com/ ) for name normalization, and tried different strategies for MeSH ID mapping as follows:

Using dictionary look-up to find MeSH ID.

Combining results of systems using different name normalization module.

Given a CM or DM, both MeSH WebSearch API and Wikipedia API return a name list. If the first name in the list exactly matches an item in MeSH, the mention is normalized as the item with an ID; otherwise, the mention is discarded. Figure 3 gives an example of DN for a DM ‘axonal neuropathy’ using dictionary look-up. Through MeSH WebSearch API and Wikipedia API, we obtained two name lists of length 5: {‘Giant Axonal Neuropathy’, ‘Spinocerebellar Ataxias’, ‘Alcoholic Neuropathy’, ‘Giant Axonal Neuropathy, Autosomal Dominant’, ‘Severe infantile axonal neuropathy’} and {‘Giant axonal neuropathy with curly hair’, ‘Giant Axonal Neuropathy’, ‘Acute motor axonal neuropathy’, ‘Gigaxonin’, ‘Gan’}, respectively. The first name in the name list returned by MeSH WebSearch API, ‘Giant Axonal Neuropathy’, was found in MeSH with ID D056768, while the first name in the name list returned by Wikipedia API, ‘Giant axonal neuropathy with curly hair’, was not, denoted by ‘ID = −1’.

Figure 3.

An example of DN for a DM axonal neuropathy using dictionary look-up.

In addition, a re-ranking system based on SVM-rank was further proposed to combine the results of the above two systems for possible improvement, where all names in the lists as shown in Figure 3 were regarded as candidates for re-ranking. The features used in the system include:

  • Bag-of-words of the mention

  • Similarity between a candidate and the mention

  • Similarity between a candidate and other mentions in the context of the mention

  • Whether a candidate generated by MeSH WebSearch API, Wikipedia API or both of them

  • Place of a candidate in the ranked list returned by MeSH WebSearch API

  • Place of a candidate in the ranked list return by Wikipedia API

Our previous system submitted to the challenge used ‘name normalization’ (see Figure 3 ).

CID relation extraction

First, we designed a rule-based filter to generate CID relation candidates, and then built a classifier based on linear SVMs to check whether there was a relation in any candidate. During training, a candidate was assigned as ‘TRUE’ (a postive sample) if it was annotated in the training and development sets, otherwise, it was assigned as ‘FALSE’ (a negative sample). The candidates were generated:

  • CID pairs within three sentences. We selected the proper number from {1, 2, 3, 4} according to the recall and precision of the filter on the training and development sets.

  • Among the CID pairs with same chemical and drug MeSH IDs generated by step 1, only the pairs between which there have fewest words were kept.

  • Among the CID pairs generated by step 2, the pairs between which the number of words was more than a threshold were removed. The threshold was the average number of words between all positive samples generated by step 2 on the training and development sets (i.e. 78).

The features used in the machine learning-based classifier included bag-of-words of both mentions, the number of other mentions between a CID pair, and CDR based on CTD.

Results

In our experiments, CRFsuite ( 30 ), SVM hmm ( 31 ) and liblinear ( 32 ) were used as implementations of CRFs, SSVMs and the ensemble meta-classifier for CMR and DMR respectively, SVM rank ( 33 ) was used as an implement of SVM-rank for CN and DN, and liblinear was also used as an implement of the SVM classifier for CID relation extraction. To optimize parameters of all subsystems using machine learning methods, we conducted 10-fold cross-validation on the combination of training and development sets. The performance of each subsystem was evaluated by precision (P), recall (R) and F1-score (F1), calculated by the official tool provided by the challenge organizers. As the challenge organizers provided some tools as baseline systems, we compared our system with them. Before introducing results of our system in detail, we should note that all results presented in the following sections may be different from those presented in our previous article ( 34 ) as some records failed to be processed because of data transmission problem.

CDMR: CMR and DMR

Our system achieved F1-scores of 92.96 and 86.93% on CMR and DMR, respectively, as shown in Table 3 , where the F1-score on DMR is a little better than that of our previous system submitted to the challenge (86.76%), the highest F1-score of the challenge ( 34 ), due to data transmission problem. When compared with the baseline systems: tmChem and DNorm, provided by the organizers, our system showed much better performance. It outperformed tmChem by 4.36% on CMR and DNorm by 6.69% on DMR, respectively. When compared with CRFs and SSVMs, the stacked ensemble method performed slightly better, due to significantly higher precision. For example, on DMR, the stacked ensemble method outperformed SSVMs by 0.05% in F1-score because of much higher precision (88.68% vs 87.74%). Among CRFs and SSVMs, SSVMs achieved higher F1-score, mainly due to higher recall. SSVMs outperformed CRFs by 0.6 and 0.1% in F1-score on CMR and DMR, respectively. The differences between recalls were 0.95 and 0.82%.

Table 3.

Results of our system on CMR and DMR (%).

Method Chemical
Disease
PRF1PRF1
DNormNANANA81.6278.9180.24
tmChem93.0884.5388.60NANANA
CRFs94.2590.4492.3088.3785.2386.78
SSVMs94.5891.3592.9387.7486.0586.88
Stacked ensemble95.0590.9692.9688.6885.2386.93
Method Chemical
Disease
PRF1PRF1
DNormNANANA81.6278.9180.24
tmChem93.0884.5388.60NANANA
CRFs94.2590.4492.3088.3785.2386.78
SSVMs94.5891.3592.9387.7486.0586.88
Stacked ensemble95.0590.9692.9688.6885.2386.93
Table 3.

Results of our system on CMR and DMR (%).

Method Chemical
Disease
PRF1PRF1
DNormNANANA81.6278.9180.24
tmChem93.0884.5388.60NANANA
CRFs94.2590.4492.3088.3785.2386.78
SSVMs94.5891.3592.9387.7486.0586.88
Stacked ensemble95.0590.9692.9688.6885.2386.93
Method Chemical
Disease
PRF1PRF1
DNormNANANA81.6278.9180.24
tmChem93.0884.5388.60NANANA
CRFs94.2590.4492.3088.3785.2386.78
SSVMs94.5891.3592.9387.7486.0586.88
Stacked ensemble95.0590.9692.9688.6885.2386.93

CDN: CN and DN

The direct dictionary look-up system (without using name normalization mentioned in Figure 2 ) outperformed the two dictionary look-up systems using name normalization by at least 2.51% in F1-score on CN and 3.77% in F1-score on DN. Among the two dictionary look-up systems using name normalization, the system using Wikipedia API for name normalization was a better one. The re-ranking system taking the outputs of the two dictionary look-up systems using name normalization as input did not bring any improvement. The highest F1-scores of our system on CN and DN were 92.68 and 84.11%, respectively, much higher than four baseline systems: ‘dictionary look-up’ that directly looked up MeSH using DMs from CTD, ‘tmChem’, ‘DNorm’ and ‘DNorm*’ that adopted DMs from our DMR system as input of DNorm for DN, as shown in Table 4 . The smallest F1 differences between the baseline systems and our system on CN and DN were 4.67 and 2.82%, respectively. The reason why our previous system submitted to challenge used name normalization module (see Figure 2 ) and only achieved a highest F1-score of 67.82%, much lower than that presented here (78.24%), is just because the name lists returned by MeSH WebSearch API and Wikipedia API were sometimes empty within a limited time for communication between our system and the challenge server.

Table 4.

Results of our system on CN and DN (%).

Method Chemical
Disease
PRF1PRF1
dictionary look-upNANANA42.7167.4652.30
tmChem95.0281.1187.52NANANA
DNormNANANA81.1580.1380.64
DNorm*NANANA81.2581.3381.29
MeSH87.1590.7388.9077.8980.4379.14
Wikipedia87.9591.4389.6878.6282.1480.34
Re-ranking87.8390.0388.9278.3678.1178.24
Mapping directly93.4890.9492.1988.6480.0384.11
Method Chemical
Disease
PRF1PRF1
dictionary look-upNANANA42.7167.4652.30
tmChem95.0281.1187.52NANANA
DNormNANANA81.1580.1380.64
DNorm*NANANA81.2581.3381.29
MeSH87.1590.7388.9077.8980.4379.14
Wikipedia87.9591.4389.6878.6282.1480.34
Re-ranking87.8390.0388.9278.3678.1178.24
Mapping directly93.4890.9492.1988.6480.0384.11
Table 4.

Results of our system on CN and DN (%).

Method Chemical
Disease
PRF1PRF1
dictionary look-upNANANA42.7167.4652.30
tmChem95.0281.1187.52NANANA
DNormNANANA81.1580.1380.64
DNorm*NANANA81.2581.3381.29
MeSH87.1590.7388.9077.8980.4379.14
Wikipedia87.9591.4389.6878.6282.1480.34
Re-ranking87.8390.0388.9278.3678.1178.24
Mapping directly93.4890.9492.1988.6480.0384.11
Method Chemical
Disease
PRF1PRF1
dictionary look-upNANANA42.7167.4652.30
tmChem95.0281.1187.52NANANA
DNormNANANA81.1580.1380.64
DNorm*NANANA81.2581.3381.29
MeSH87.1590.7388.9077.8980.4379.14
Wikipedia87.9591.4389.6878.6282.1480.34
Re-ranking87.8390.0388.9278.3678.1178.24
Mapping directly93.4890.9492.1988.6480.0384.11

CID relation extraction

Table 5 showed the performance of our system when using the output of different CN and DN systems (as mentioned earlier) as input. The system taking the output of the “Mapping directly” CN and DN system (see Table 4 ) achieved the highest F1-score of 43.04%, outperforming the systems taking the other three CN and DN systems: ‘MeSH WebSearch’, ‘Wikipedia’ and ‘Re-ranking’ (see Table 4 ) as input by 4.97, 3.77 and 5.87%, respectively. When compared with two baseline systems: (i) ‘Co-occurrence’ that took output of both tmChem and DNorm as input, and determined CID relations according to the frequency of CID pairs; (ii) ‘Co-occurrence * ’ that took output of the ‘Mapping directly’ CN and DN system (see Table 4 ) as input, and determined CID relations according to the frequency of CID pairs, our system showed much better performance. The F1-score difference between the baseline systems and our system achieved 13.15% (29.89 vs 43.04%). Among the two baseline systems, ‘Co-occurrence*’ was a much better one, indicating that the ‘Mapping directly’ CN and DN system is much better than tmChem and DNorm again. When compared with our previous systems submitted to the challenge that took the outputs of the three CN and DN systems: ‘MeSH WebSearch’, ‘Wikipedia’ and ‘Re-ranking’ as input, the current systems also achieved much better performance (the previous highest F1-score of 41.26% ( 34 ) vs the current highest F1-score of 42.65%) because that there was no data transmission problem in the current systems.

Table 5.

Results of our system on the CID relation subtask (%).

MethodPRF1
Co-occurrence16.4376.4527.05
Co-occurrence*18.5177.6529.89
MeSH WebSearch53.8234.3341.92
Wikipedia54.6134.9942.65
Re-ranking55.8334.1542.37
Mapping directly57.9334.2443.04
MethodPRF1
Co-occurrence16.4376.4527.05
Co-occurrence*18.5177.6529.89
MeSH WebSearch53.8234.3341.92
Wikipedia54.6134.9942.65
Re-ranking55.8334.1542.37
Mapping directly57.9334.2443.04
Table 5.

Results of our system on the CID relation subtask (%).

MethodPRF1
Co-occurrence16.4376.4527.05
Co-occurrence*18.5177.6529.89
MeSH WebSearch53.8234.3341.92
Wikipedia54.6134.9942.65
Re-ranking55.8334.1542.37
Mapping directly57.9334.2443.04
MethodPRF1
Co-occurrence16.4376.4527.05
Co-occurrence*18.5177.6529.89
MeSH WebSearch53.8234.3341.92
Wikipedia54.6134.9942.65
Re-ranking55.8334.1542.37
Mapping directly57.9334.2443.04

Discussion

An end-to-end machine learning-based system was proposed for the CDR extraction challenge of BioCreative V, composed of three subsystems: CMR and DMR, CN and DN and CID relation extraction. For each subsystem, we investigated the performance of different methods.

On CMR and DMR, similar with previous studies ( 34 ) on other named entity recognition problems, the stacked ensemble method outperformed than CRFs and SSVMs (see Table 3 ). The main reason lies in that the stacked ensemble method is able to make a good choice when there are conflicts between CRFs and SSVMs, resulting in higher precision. For example, given a tokenized sentence fragment ‘We have described a patient with severe rheumatoid arthritis and a history of mefenamic acid nephropathy in whom hyperkalemia and inappropriate hypoaldosteronism ……’ with one CM (i.e. ‘mefenamic acid’) and three DMs (i.e. ‘rheumatoid arthritis’, ‘hyperkalemia’ and ‘hypoaldosteronism’), all CMs and DMs were correctly recognized by CRFs and SSVMs at the same time except the DM ‘hypoaldosteronism’, which was correctly recognized by CRFs, but wrongly recognized as ‘inappropriate hypoaldosteronism’ by SSVMs. The stacked ensemble method chooses the correct DM. Nevertheless, there were still a large number of errors in our system, such as abbreviations that could not be recognized. In future work, we will try to develop a post-processing to further handle boundary errors and abbreviations.

On CN and DN, by checking errors of our dictionary look-up systems using two name normalization tools, we found that a large number of errors were caused by name normalization (see Figure 2 ) such as ‘neuroneal lost’ wrongly normalized as ‘Frontotemporal Lobar Degeneration’ by MeSH WebSearch API and ‘amphotericin’ wrongly normalized by Wikipedia API. This may be also the main reason why the re-ranking method performed worse than the two individual dictionary look-up system using name normalization. When compared with the best DN system of the challenge, which was also a dictionary look-up system ( 35 ), our system is still inferior. The main difference lies in that the best system of the challenge considered more accurate domain dictionaries and rules for name normalization.

It is easy to understand that the CID extraction system taking the output of the ‘Mapping directly’ CN and DN system (see Table 5 ) outperformed the other systems for comparison since the ‘Mapping directly’ CN and DN system was better than other CN and DN systems as shown in Table 4 . When compared with the best CID relation extraction system of the challenge ( 36 ), our system is still not good enough. The main factors affecting the performance of our CID extraction systems include: (i) whether the candidate filter is good enough? The more positive samples and less negative samples in candidates, the better the candidate filter is; (ii) which machine learning algorithm and which features you use? The numbers of positive and negative samples in candidates generated by the filter in our CID extraction system on the training and development sets are 1530 and 5079. It means that the recall of the filter is 74.63% (1530/2050, where 2050 is the total number of CID relations in the training and development sets as shown in Table 1 ), which is a little low, and the precision of the filter is 23.15%, which is imbalanced. During the limited time of the challenge, we only developed a simple CID extraction system with limited features. For further improvement, we will try to other strategies to generate better candidates with higher recall and precision, and try other machine learning algorithms and much richer features such as features generated by deep learning algorithms.

Conclusion

In this article, we introduced an end-to-end system for the challenge of automatic extraction of mechanistic and biomarker CDRs in BioCreative V, which consists of three subsystems corresponding to CMR and DMR, CN and DN and CID relation extraction. Ensemble learning methods slightly outperformed two individual state-of-the-art machine learning methods (i.e. CRFs and SSVMs) on CMR and DMR when they were regarded as sequence labeling problems, and achieved the best performance on DMR as far as we known. On CN and DN, a good name normalization module is a key point of dictionary look-up methods. The CID relation extraction remains a challenge.

Acknowledgements

This article is supported in part by grants: National 863 Program of China (2015AA015405), NSFCs (National Natural Science Foundations of China) (61573118, 61402128, 61473101, 61472428, 61173075 and 61272383), Strategic Emerging Industry Development Special Funds of Shenzhen (JCYJ2014 0508161040764, JCYJ20 140417172417105, JCYJ201 40627163 809422 and JSGG20151015161015297), Innovation Fund of Harbin Institute of Technology (HIT.NSRIF.2017052) and Program from the Key Laboratory of Symbolic Computation and Knowledge Engineering of Ministry of Education (93K172016K12). Funding for open access charge: JCYJ20140508161040764

Conflict of interest . None declared.

References

1

Li
C.
Liakata
M.
Rebholz-Schuhmann
D.
(
2014
)
Biological network extraction from scientific literature: state of the art and challenges
.
Brief. Bioinform
,
15
,
856
877
.

2

Wei
C.H.
Peng
Y.
Leaman
R
. et al.  . (
2015
) Overview of the BioCreative V chemical disease relation (CDR) task. In Proceedings of the fifth BioCreative challenge evaluation workshop , pp.154–166.

3

Bodenreider
O.
(
2004
)
The unified medical language system (UMLS): integrating biomedical terminology
.
Nucleic Acids Res
.,
32
,
D267
D270
.

4

Degtyarenko
K.
de Matos
P.
Ennis
M
. et al.  . (
2008
)
ChEBI: a database and ontology for chemical entities of biological interest
.
Nucleic Acids Res
.,
36
,
D344
D350
.

5

Lipscomb
C.E.
(
2000
)
Medical subject headings (MeSH)
.
Bull. Med. Library Assoc
.,
88
,
265
.

6

Wang
Y.
Xiao
J.
Suzek
T.O
. et al.  . (
2009
)
PubChem: a public information system for analyzing bioactivities of small molecules
.
Nucleic Acids Res
.,
37
,
W623
W633
.

7

Law
V.
Knox
C.
Djoumbou
Y
. et al.  . (
2014
)
DrugBank 4.0: shedding new light on drug metabolism
.
Nucleic Acids Res
.,
42
,
D1091
D1097
.

8

Davis
A.P.
Grondin
C.J.
Lennon-Hopkins
K
. et al.  . (
2015
)
The Comparative Toxicogenomics Database s 10th year anniversary: update 2015
.
Nucleic Acids Res
.,
43
(
Database issue
),
D914
D920
.

9

Vazquez
M.
Krallinger
M.
Leitner
F
. et al.  . (
2011
)
Text mining for drugs and chemical compounds: methods, tools and applications
.
Mol. Inf
.,
30
,
506
519
.

10

Usié
A.
Alves
R.
Solsona
F
. et al.  . (
2014
)
CheNER: chemical named entity recognizer
.
Bioinformatics
,
30
,
1039
1040
.

11

Khare
R.
Li
J.
Lu
Z.
(
2014
)
LabeledIn: Cataloging labeled indications for human drugs
.
J. Biomed. Inform
.,
52
,
448
456
.

12

Settles
B.
(
2004
)
Biomedical named entity recognition using conditional random fields and rich feature sets
. In
Proceedings of the International Joint Workshop on Natural Language Processing in Biomedicine and its Applications
, pp.
104
107
.

13

Lafferty
J.
McCallum
A.
Pereira
F.C.
(
2001
)
Conditional random fields: Probabilistic models for segmenting and labeling sequence data
. In
Proceedings of the Eighteenth International Conference on Machine Learning
, pp.
282
289
.

14

Jimeno
A.
Jimenez-Ruiz
E.
Lee
V
. et al.  . (
2008
)
Assessment of disease named entity recognition on a corpus of annotated sentences
.
BMC Bioinformatics
,
9
,
S3.

15

Doğan
R.I.
Lu
Z.
(
2012
)
An improved corpus of disease mentions in PubMed citations
. In
Proceedings of the 2012 workshop on biomedical natural language processing
, pp.
91
99
.

16

Kang
N.
Singh
B.
Afzal
Z
. et al.  . (
2013
)
Using rule-based natural language processing to improve disease normalization in biomedical text
.
J. Am. Med. Inform. Assoc
.,
20
,
876
881
.

17

Leaman
R.
Wei
C.H.
Lu
Z.
(
2015
)
tmChem: a high performance approach for chemical named entity recognition and normalization
.
J. Cheminf
.,
7
,
S3
.

18

Leaman
R.
Islamaj Dogan
R.
Lu
Z.
(
2013
)
DNorm: disease name normalization with pairwise learning to rank
.
Bioinformatics
,
29
,
2909
2917
.

19

Xiao
J.
Su
J.
Zhou
G
. et al.  . (
2005
)
Protein-protein interaction extraction: a supervised learning approach
.
Proc Symp on Semantic Mining in Biomedicine, Hinton, UK
. pp.
10
13
,

20

Sohn
S.
Kocher
J.P.A.
Chute
C.G
. et al.  . (
2011
)
Drug side effect extraction from clinical narratives of psychiatry and psychology patients
.
J. Am. Med. Inform. Assoc
.,
18
,
i144
i149
.

21

Coulet
A.
Garten
Y.
Dumontier
M
. et al.  . (
2011
)
Integration and publication of heterogeneous text-mined relationships on the Semantic Web
.
J. Biomed. Sem
.,
2
,
S10.

22

Fundel
K.
Kuffner
R.
Zimmer
R.
(
2007
)
RelEx–Relation extraction using dependency parse trees
.
Bioinformatics
,
23
,
365
371
.

23

Xu
R.
Wang
Q.
(
2014
)
Automatic construction of a large-scale and accurate drug-side-effect association knowledge base from biomedical literature
.
J. Biomed. Inform
.,
51
,
191
199
.

24

Li
J.
Sun
Y.
Johnson
R
. et al.  . (
2015
)
Annotating chemicals, diseases, and their interactions in biomedical literature
.
Proceedings of the fifth BioCreative challenge evaluation workshop
, pp.
173
182
.

25

Xu
H.
Stenner
S.P.
Doan
S
. et al.  . (
2010
)
MedEx: a medication information extraction system for clinical narratives
.
J. Am. Med. Inform. Assoc
.,
17
,
19
24
.

26

Hewett
M.
Oliver
D.E.
Rubin
D.L.
et al.  . (
2002
)
PharmGKB: the pharmacogenetics knowledge base
.
Nucleic Acids Res
.,
30
,
163
165
.

27

Schriml
L.M.
Arze
C.
Nadendla
S
. et al.  . (
2012
)
Disease Ontology: a backbone for disease semantic integration
.
Nucleic Acids Res
.,
40
,
D940
D946
.

28

Pathak
J
Chute
C.G.
(
2010
)
Analyzing categorical information in two publicly available drug terminologies: RxNorm and NDF-RT
.
J. Am. Med. Inform. Assoc
.,
17
,
432
439
.

29

Doğan
R.I.
Comeau
D.C.
Yeganova
L
. et al.  . (
2014
)
Finding abbreviations in biomedical literature: three BioC-compatible modules and four BioC-formatted corpora
.
Database (Oxford)
,
2014
,
bau044
.

30

Okazaki
N.
(
2007
)
CRFsuite: A Fast Implementation of Conditional Random Fields (CRFs)
. http://www.chokkan.org/software/crfsuite/ .

31

Joachims
T.
Finley
T
John Yu
C.-N.
(
2009
)
Cutting-plane training of structural SVMs
.
Mach. Learn
.
77
,
27
59
.

32

Fan
R.E.
Chang
K.W.
Hsieh
C.J
. et al.  . (
2008
)
LIBLINEAR: a library for large linear classification
.
J. Mach. Learn. Res
.,
9
,
1871
1874
.

33

Joachims
T.
(
2006
)
Training Linear SVMs in Linear Time
,
Proceedings of the ACM Conference on Knowledge Discovery and Data Mining (KDD)
, pp.
217
226
.

34

Li
H.
Chen
Q.
Chen
K
. et al.  . (
2015
) HITSZ_CDR System for Disease and Chemical Named Entity Recognition and Relation Extraction. Proceedings of the Fifth BioCreative Challenge Evaluation Workshop , pp. 196–201.

35

Lee
H.C.
Hsu
Y.Y.
Kao
H.Y.
An enhanced CRF-based system for disease name entity recognition and normalization on BioCreative V DNER task
.
Proceedings of the Fifth BioCreative Challenge Evaluation Workshop
, pp.
226
233
.

36

Xu
J.
Wu
Y.
Zhang
Y
. et al.  .
UTH-CCB@BioCreative V CDR task: identifying chemical-induced disease relations in biomedical text
.
Proceedings of the Fifth BioCreative Challenge Evaluation Workshop
, pp.
254
259
.

Author notes

Citation details: Li,H., Tang,B., Chen,Q. et al. HITSZ_CDR: an end-to-end chemical and disease relation extraction system for BioCreative V. Database (2016) Vol. 2016: article ID baw077; doi:10.1093/database/baw077

This is an Open Access article distributed under the terms of the Creative Commons Attribution License ( http://creativecommons.org/licenses/by/4.0/ ), which permits unrestricted reuse, distribution, and reproduction in any medium, provided the original work is properly cited.