<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>Biomedical Relation Extraction via Domain Knowledge and Prompt Learning</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Jianyuan Yuan</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Wei Du</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Xiaoxia Liu</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Yijia Zhang</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Dalian Maritime University</institution>
          ,
          <addr-line>Dalian 116024, Liaoning</addr-line>
          ,
          <country country="CN">China</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Department of Neurology and Neurological Sciences, Stanford University</institution>
          ,
          <addr-line>Stanford, CA 94305</addr-line>
          ,
          <country country="US">USA</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>Biomedical relation extraction plays a crucial role in extracting crucial biomedical information from extensive literature, thereby supporting disease treatment and the construction of biomedical knowledge bases. However, biomedical texts contain highly technical language and domain-specific terminology, which makes it dificult for models to fully understand their semantics. Furthermore, imbalances in the distribution of samples across diferent categories in biomedical datasets result in reduced classification accuracy for categories with limited training samples. In this study, we propose a biomedical relation extraction model based on domain knowledge and prompt learning. The prompt template guides the model to focus on key features and information, so that more knowledge can be obtained from limited data. Utilizing domain knowledge to acquire refined entity representations, thereby mitigating the challenges posed by technical language and domain-specific terminology. The model is evaluated on the DDI Extraction 2013 dataset and the ChemProt dataset, and the experimental results demonstrate that our model can achieve state-of-the-art performance.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;biomedical relation extraction</kwd>
        <kwd>prompt learning</kwd>
        <kwd>biomedical literature</kwd>
        <kwd>domain knowledge</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        With the rapid development of the biomedical field, the
amount of biomedical literature has exploded, which
contains a wealth of biomedical information [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. Biomedical
relation extraction is a natural language processing
technology whose purpose is to extract the relation between
entities from biomedical text data [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. This technology can
help researchers quickly extract important biomedical
information from literature, and provide important support
for drug development and disease treatment [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ].
      </p>
      <p>
        The highly technical language and domain-specific
terminology used in biomedical texts complicates this task, and
traditional approaches often struggle to achieve high
performance [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. Moreover, there are diferences in the number of
samples of each category in the biomedical data set,
resulting in low classification accuracy for categories with fewer
training samples. Meanwhile, biomedical relation extraction
usually requires a large amount of labeled data to efectively
train the model. However, due to the huge amount of data,
the cost of manual labeling is very high, and how to obtain
more knowledge from limited data becomes very important
[
        <xref ref-type="bibr" rid="ref5">5</xref>
        ].
      </p>
      <p>
        The application of pre-trained language models in
biomedical texts has received widespread attention and
exploration [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. Most of the current biomedical relation
extraction methods mainly rely on pre-trained language models.
Although the pre-trained language model has the ability to
learn the general representation of language, there is a
significant diference between the pre-training target and the
downstream task fine-tuning, which has a very important
impact on the performance of the model in the downstream
task. As shown in Fig.1, since the target of unsupervised
prediction of the input text sequence of the pre-trained model
is inconsistent with the supervised classification operation
of the downstream task, the model cannot fully apply its
prior knowledge to the downstream task.
      </p>
      <p>We propose a biomedical relation extraction model based
on domain knowledge and prompt learning. Domain
knowledge can provide entities with richer feature representations,
which can better reflect the essence of entities and improve
the efect of entity representation. Prompt learning is a
method that can efectively bridge the gap between
pretraining and fine-tuning on downstream tasks. The core
idea of this method is to transform the traditional
classification task into a cloze problem. By designing a prompt
template, replace a word or a continuous short sentence
(usually represented by [MASK]) in the input text with the
corresponding label words, and ask the model to predict the
label words. This approach makes the model need to
consider more contextual information when predicting, so as to
better understand the semantics of the input text. Overall,
the contributions of this paper are as follows:
1) We propose a biomedical relation extraction model
based on prompt learning, which can guide the
model to focus on key features and information by
constructing multiple task-related prompt. By
introducing prompt learning, more knowledge can be
obtained from limited data, which efectively
alleviates the problem of insuficient knowledge that the
model can learn when the amount of data is small.
2) The model obtains detailed information of
biomedical entities through domain knowledge and
obtains enhanced entity representation. In addition,
special tokens are embedded around entities,
enabling entities to better integrate domain knowledge,
thereby reducing the impact of high-tech language
and domain-specific terminology in biomedical texts
on model performance.
3) The model is experimented on the ChemProt dataset
and the DDI Extraction 2013 dataset. Experimental
results demonstrate that the proposed model
outperforms existing methods and achieves state-of-the-art
performance in biomedical relation extraction.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Related Work</title>
      <p>
        Recently, various neural network-based approaches have
demonstrated commendable outcomes in diverse relation
extraction tasks and have been extensively employed in
biomedical research. Liu et al. [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] utilized a convolutional
neural network (CNN) model for biomedical relation
extraction, demonstrating its efectiveness in achieving high
performance. In this model, the words in the sentences of
the biomedical dataset serve as inputs to the CNN, which can
efectively capture local features. Liu et al. [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] introduced a
model for biomedical relation extraction tasks,which is the
dependency convolutional neural network (DCNN) model.
By utilizing the dependency parse tree, the DCNN model
can efectively capture the interdependency between words.
Sasaki et al. [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] applied an attention-based CNN model to
biomedical relation extraction tasks. Each word in a
biomedical sentence has a varying impact on the final classification
outcome in relation extraction. Kavuluru et al. [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ]
proposed a method that employs recurrent neural networks
(RNNs) at the word and character levels to extract drug-drug
interaction relations. Lim et al. [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ] proposed a method
using recurrent neural networks to automatically extract drug
interactions in the literature. This method decomposes the
text into a syntax tree and uses RNN to recursively process
the tree structure to extract drug-drug interaction
information.
      </p>
      <p>
        Sahu et al. [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] used Long Short-Term Memory Network
(LSTM) to automatically extract drug interaction
information from biomedical texts. Mostafapour et al. [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] proposed
a model that uses Bi-directional Long-Short Term Memory
(BiLSTM) to model context information in text sequences
and uses a hierarchical structure to consider diferent levels
of semantic information. Wang et al.[
        <xref ref-type="bibr" rid="ref14">14</xref>
        ] used dependency
parsing to model the relation between drugs in text and used
the LSTM network to capture contextual information in text
sequences. Huang et al. [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ] employed a hybrid model
consisting of a support vector machine(SVM) and LSTM for
extracting drug interaction information. Zheng et al. [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ]
proposed a BiLSTM model with an attention mechanism to
extract the interaction relation between drugs in biomedical
texts. Zhang et al. [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ] utilizes the shortest dependency path
to determine the grammatical relations within a sentence,
and extracts keywords located between two entities.
      </p>
      <p>
        Peng et al. [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ] proposed a multi-model approach that
combines a SVM, CNN, and RNN to improve the
performance of biomedical relation extraction. Sun et al. [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ]
improved biomedical relation extraction by integrating
attention and ELMo representations with bidirectional LSTM
networks. A neural model for extracting CPI was proposed
by Zhang et al. [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ], which utilized depth context
representation and a multi-head attention mechanism. Xiong et
al. [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ] presented a model that utilizes a combination of a
Graph Convolutional Neural Network (GCNN) and a LSTM
network for extracting biomedical relations. Park et al. [
        <xref ref-type="bibr" rid="ref22">22</xref>
        ]
utilized attention-based GCN for the task of biomedical
relation extraction.
      </p>
      <p>
        Peng et al. [
        <xref ref-type="bibr" rid="ref23">23</xref>
        ] applied the BERT (Bidirectional Encoder
Representation of Transformer) model to the task of
biomedical relation extraction. Lee et al. [
        <xref ref-type="bibr" rid="ref24">24</xref>
        ] extended the BERT
model by training it on a large-scale biomedical corpus,
resulting in the BioBERT model. Huang et al. [
        <xref ref-type="bibr" rid="ref25">25</xref>
        ] proposed
an EMSI-BERT method for drug-drug interaction
extraction. This method utilizes an asymmetric entity masking
strategy and a symbol insertion structure. Sun et al. [
        <xref ref-type="bibr" rid="ref26">26</xref>
        ]
proposed a model that uses a combination of Gaussian
probability distribution and external biomedical knowledge to
extract CPI. Sun et al. [
        <xref ref-type="bibr" rid="ref27">27</xref>
        ] proposed a model( BERT Att
capsule) that utilizes a BERT-based attention-guided capsule
network to extract CPI. This method uses attention
mechanisms to guide the extraction of interactions and capsule
networks to capture the interactions’ semantic features. Liu
et al. [
        <xref ref-type="bibr" rid="ref28">28</xref>
        ] proposed a grammar-enhanced model and a
category keyword-based approach. The model uses graph-based
grammar to build a syntactic tree and uses type keywords
to guide the model to extract specific types of relations. Su
et al. Su and Vijay-Shanker [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] explore the approaches to
improve the BERT model for relation extraction tasks in
both the pre-training and fine-tuning stages.
      </p>
    </sec>
    <sec id="sec-3">
      <title>3. Method</title>
      <sec id="sec-3-1">
        <title>3.1. Problem Definition</title>
        <p>Given a sentence sequence  = {1,2,. . . ,−1 ,}, where
 is a word in sentence and n is the length of the
sentence. The subject entity 1 ={,. . . , } and the object entity
1 ={,. . . ,} are located in the same sentence. Biomedical
relation extraction aims to identify the relation  between 1
and 2, where  is either selected from a predefined relation
set  or  .</p>
      </sec>
      <sec id="sec-3-2">
        <title>3.2. Model Framework</title>
        <p>Fig.2 shows the architecture of the biomedical relation
extraction model based on domain knowledge and prompt
learning. The model consists of four modules: input module,
encoding module, knowledge enhancement module, and
prompt learning module. We have designed three prompt
templates, namely the prompt for biomedical entity 1, the
prompt for biomedical entity relations, and the prompt for
biomedical entity 2. Firstly, input biomedical text and
prompt templates into the model for encoding. Then, the
enhanced entity representation is obtained through
knowledge enhancement. Finally, through the prompt module, the
model can predict the label words at the [MASK] position
and select their corresponding labels for classification.</p>
      </sec>
      <sec id="sec-3-3">
        <title>3.3. Input Module</title>
        <p>For the biomedical relation extraction task, it is represented
as  = ,  , where  represents the input text and 
represents the category label. The sentence in the biomedical
dataset is represented as  = {1,. . . ,1,. . . 2,. . . ,}, where
1, 2 represents two biomedical entities, respectively. A
key part of prompt learning is to construct an appropriate
template P and label word V. M: Y → V is a mapping that
connects the task label with the label word V.</p>
        <p>The model’s input comprises two components,
specifically the input text denoted as  and the prompt template
denoted as (). The sentence is subjected to tokenization,
and each token is encoded using a vector of d dimensions.
Moreover, an embedded "CLS" token is added at the
beginning of each sentence sequence. To denote the boundaries
of each biomedical entity, special symbols are introduced.
The first entity is enclosed by "$" symbols on both sides,
while the second entity is enclosed by "#" symbols on both
sides.</p>
        <p>In addition to retaining the original input in , multiple
[MASKs] need to be fed into the model. Three prompts
are designed in the input prompt template, respectively,
the prompt 1() corresponding to the biomedical entity
1, the prompt () corresponding to the biomedical
entity relation and the prompt 2() corresponding to the
biomedical entity 2. Denote the prompt template ()
corresponding to the input text  as:
() = {1(), (), 2()}</p>
        <p>The prompt 1() corresponding to biomedical entity 1
and the prompt 2() corresponding to biomedical entity
2 can be formalized as follows:
(1)
(2)
(3)
(4)
(5)
1() = {, ℎ[ ]1}
2() = {, ℎ[ ]2}</p>
        <p>Then, the prompt () for the relation between
biomedical entities is designed. For example, in the biomedical
example sentence above, the relation type is CPR: 4, which
means that the relation between entity 1 and entity 2 is
"inhibition". The prompt template for the relation type is
"1 [MASK] 2", and the prompt label word is "has curved
the". Prompt () for the relation corresponding to the
input text  can be expressed as:</p>
        <p>() = {, 1[ ]2}</p>
        <p>The complete input composition can be formalized as
follows:</p>
        <p>= {, ()}</p>
      </sec>
      <sec id="sec-3-4">
        <title>3.4. Encode Module</title>
        <p>BioBERT is a pre-trained model based on BERT, which is
suitable for natural language processing tasks of biomedical
texts. The BioBERT model is trained using a large corpus in
the biomedical field, which can improve the text
understanding and classification performance in the biomedical field,
making BioBERT a model widely used in the biomedical
natural language processing field.</p>
        <p>The model’s input consists of biomedical text and a
prompt template, wherein [MASK] denotes the portion that
requires completion by the model. Within the input
sequence, [MASK] is substituted with a special token,
signifying its prediction requirement. To ensure the model
comprehends the word’s position within the sentence, each
word embedding vector is added to its corresponding
position vector in the sequence. The Transformer architecture
is employed to encode the sequence of embedding vectors
and position vectors. This architecture comprises multiple
layers, each containing a multi-head attention mechanism
and a feed-forward neural network. Each layer encodes an
input vector sequence to extract its representation. This
encoding approach efectively captures both the semantic
and syntactic information present in the input sequence,
thereby enhancing the model’s ability to predict the content
to fill the [MASK].</p>
      </sec>
      <sec id="sec-3-5">
        <title>3.5. Knowledge Enhancement Module</title>
        <p>of the sentence.</p>
        <p>Biomedical entities are sourced from Wikipedia and
DrugBank using crawler technology to obtain interpretation
information in the biomedical domain. This interpretation
information is denoted as  = { 1,2,3,..., }, where
 represents the  − ℎ word and  represents the length</p>
        <p>The vector 1 for a biomedical entity is computed as the
average of the hidden layer vectors from  to  in the
model. Similarly, the vector 2 for another biomedical entity
is obtained as the average of the hidden layer vectors from
 to  in the model. The calculation formulas for these
vectors are as follows:
[︃
[︃
1′ = 1 ℎ
2′ = 2 ℎ
︃(
︃(
 −  + 1
1
1
 −  + 1

∑︁ 
=</p>
        <p>)︃]︃

∑︁ 
=
)︃]︃
+ 1</p>
        <p>(6)
+ 2
(7)
1, 2 denote bias vectors.
where 1 ∈ × , 2 ∈ × denote weight matrices.</p>
        <p>The semantic feature representation of domain
knowledge is acquired by the model using BioBERT. This vector is
then combined with entity interpretation information and
the corresponding entity vector to generate an improved
vector representation of biomedical entities. When a
sentence  containing biomedical knowledge is successfully
matched with entity 1, the final hidden layer vector 1
of "CLS" can be obtained from BioBERT. The acquired
enhanced representation is integrated into the model, with the
calculation formulas being as follows:
1 = 4 [︀  (︀ 1′, 3 (ℎ (1)) + 3)︀]
+ 4
2 = 6 [︀  (︀ 2′, 5 (ℎ (2)) + 5)︀]
+ 6
where 3, 4, 5, 6 denote weight matrices. 3, 4, 5,
6 denote bias vectors.</p>
      </sec>
      <sec id="sec-3-6">
        <title>3.6. Prompt Learning Module</title>
        <p>In the prompt module, multiple prompts are combined
directly to form a complete prompt for a specific task. The
complete prompt template is as follows:
 () =  ℎ [ ]1 1</p>
        <p>[ ]2 ℎ [ ]3 2
where [ ]1 is mask of entity, [ ]2 is mask
of entity relation, and [ ]3 is mask of entity. The
corresponding label words are as follows:
[1] = {ℎ, , }
(8)
(9)
(10)
(11)
(12)
(13)
 (|) = ∏︀=1 ([  ] =  () | ())
(14)
where  is the number of mask positions in (), and  ()
is the label word set [ ] that maps class  to the
 − ℎ mask position [ ] .</p>
        <p>During the training process, the model will predict the
[MASK] part of the input sequence through the masked
language model (MLM) according to the information in the
context, which makes the goal of the model consistent with
the task goal of the MLM, thus efectively reducing the
pretraining and downstream task gap.</p>
        <p>In our model, label words are critical to accurately classify
the relation between biomedical entities. We design a set of
label words for each relation type, and further verify their
efectiveness by using them for model training and testing.
Entity label words refer to words that describe biomedical
entity types, such as Chemical or Gene. Label words can
help the model better understand entity types and thus
correctly predict the relation between entities.</p>
        <p>Relational label words are key short sentences describing
the relation types of biomedical entities, which are very
important for the classification results of biomedical entities.
During the learning process of the model, fill in the
prediction result of [MASK] and the closest set of label words in
the label word set, and the relation label words can make the
model better understand the relation between biomedical
entities. Table 1 and Table 2 show the details of biomedical
entity label words and relation label words in CPI dataset
and DDI dataset respectively.</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Experiments and Discussion</title>
      <sec id="sec-4-1">
        <title>4.1. Datasets and Evaluation Metrics</title>
        <p>
          The performance of the model is evaluated by the DDI
Extraction 2013 dataset [
          <xref ref-type="bibr" rid="ref29">29</xref>
          ] and the ChemProt dataset [
          <xref ref-type="bibr" rid="ref30">30</xref>
          ].
        </p>
        <p>DDI Extraction 2013 Dataset</p>
        <p>The DDI Extraction 2013 dataset is a dataset for
extracting drug-drug interaction relations. This dataset contains
medical texts from multiple sources such as DrugBank and
MedLine. DrugBank provides drug names, chemical
formulas, and pharmacological information, while MedLine
provides abstracts and full-text articles containing DDI
information. All drug pairs in the text are annotated as having
or not having interactions, with a total of four types of
interactions, namely Advice, Efect, Mechanism, and Int. The
quantity statistics of the dataset are shown in Table 3.</p>
        <p>ChemProt Dataset</p>
        <p>ChemProt dataset is a benchmark dataset used for
extracting chemical-protein interactions (CPIs) from biomedical
literature. The dataset consists of documents from PubMed
False</p>
        <p>Advice
Mechanism</p>
        <p>Efect
Int</p>
        <p>DRUG
DRUG
DRUG
DRUG
DRUG
has nothing to
need advice with
generate mechanisms with
make efect with
will interact with</p>
        <p>DRUG
DRUG</p>
        <p>DRUG
DRUG</p>
        <p>DRUG
and PubMed Central, which are annotated with diferent
types of CPIs, such as inhibition, activating. The dataset was
originally created for the BioCreative IV challenge in 2013,
and has since become a widely used benchmark dataset in
the field of biomedical natural language processing. Detailed
statistics are shown in Table 4.</p>
        <p>Evaluation Metrics</p>
        <p>To assess the eficacy of the proposed model, its
performance is measured using precision, recall, micro-F1 and
macro-F1 metrics. In particular, the micro-averaged metrics
are employed to derive an average metric by amalgamating
the contributions of all classes. The macro-F1 score is more
efective in accurately reflecting the superior performance
of the model in classes with fewer samples.</p>
      </sec>
      <sec id="sec-4-2">
        <title>4.2. Experimental Settings</title>
        <p>Implement the model proposed in this article through the
Python programming language and PyTorch development
framework. The Python language has good compatibility
with existing deep learning frameworks. Set the batch size
to 8. During the training process, an Adam optimizer was
used to optimize the parameters that afect model training
and output. Set the maximum sentence length to 512 and
the learning rate of the model to 2e-5. The experimental
parameter settings are detailed in Table 5.</p>
      </sec>
      <sec id="sec-4-3">
        <title>4.3. Experimental Results</title>
        <p>Comparison with Other Models The CPI dataset and the
DDI dataset were employed to evaluate the performance of
the model. Table 6 presents the experimental results of the
model and other approaches on the DDI dataset. Precision,
recall, Micro-F1 and Macro-F1 scores were used to assess the
model’s performance. The Micro-F1 and Macro-F1 scores
provide a comprehensive evaluation of the model’s
performance, with higher values indicating better performance.
The model achieved P, R, Micro-F1 and Macro-F1 scores
of 84.2%, 83.4%, 83.8% and 76.8%, respectively, better than
achieved baselines on the DDI dataset .</p>
        <p>Furthermore, the model achieved F1-scores of 84.3%,
78.4%, 86.3%, and 58.2% in the Advice, Mechanism, Efect,
and Int categories, respectively. Notably, the F1-scores in
the Int type, which has limited data, surpassed those of
other methods. Comparison results with alternative models
suggest that the model proposed in this study efectively
enhances biomedical relation extraction performance.</p>
        <p>Table 7 exhibits the comparison results between this
model and other approaches on the CPI dataset. The model
achieved P, R, Micro-F1 and Macro-F1 scores of 80.0%, 81.1%,
80.5% and 77.1%, respectively, representing a 4%
improvement in Micro-F1 score compared to the BioBERT model.
Moreover, the model obtained F1-scores of 74.3%, 81.4%,
77.7%, 82.3%, and 69.4% in the CPR:3, CPR:4, CPR:5, CPR:6,
and CPR:9 types, respectively. The comparison results with
other models demonstrate that the model proposed in this
paper efectively enhances the classification performance
of types with limited data.</p>
        <p>Ablation Study The ablation studies were conducted
to assess the individual contributions of each module in
the model towards the overall performance. The outcomes
of these studies are presented in Table 8. After
eliminating domain knowledge from the model, the Micro-F1 score
decreases by 1.1% and 1.6% in the DDI and CPI datasets,
respectively. The experimental findings indicate that domain
knowledge plays a moderating role in mitigating the impact
of domain-specific terminology on model performance.</p>
        <p>When prompt learning is removed from the model, the
Micro-F1 score experiences a decline of 1.9% and 2.7% in
the DDI dataset and the CPI dataset, respectively. We
hypothesize that prompt learning can narrow the gap between
pre-training and downstream tasks, enabling the model to
acquire more knowledge from limited data and thereby
enhancing the efectiveness of biomedical relation extraction.
Upon removing both domain knowledge and prompt
learning from the proposed model, the Micro-F1 score exhibits
a decrease of 2.5% and 3.1% in the DDI dataset and CPI
dataset, respectively. The experimental results demonstrate
that domain knowledge and prompt learning are crucial
components of the model, contributing significantly to the
improvement of biomedical relation extraction performance.</p>
      </sec>
      <sec id="sec-4-4">
        <title>4.4. Low-resource Results</title>
        <p>The dataset in the relation extraction task usually requires
manual annotation of a large amount of high-quality data,
which requires the participation of domain experts.
However, the cost of collecting these data is high, especially in
the biomedical field. Therefore, in the context of resource
scarcity, how to make the model fully utilize existing data to
achieve better performance has become a highly concerned
issue.</p>
        <p>The relation extraction performance of the model is
evaluated by simulating low-resource relation extraction when
biomedical data is scarce. The K-shot support set is
constructed using the training set of the biomedical dataset,
where each entity type contains K samples. To simulate
low-resource biomedical relation extraction, 8, 16, and 32
samples are sampled for each entity type, and each relation
type is sampled at least once. Table 9 shows the comparison
of biomedical relation extraction performance of our model
and other pre-trained models under low-resources.</p>
        <p>According to the comparative findings presented in Table
9, it is evident that our model exhibits commendable
performance in scenarios characterized by limited resources.
In such instances, our model surpasses other pre-trained
models in terms of eficacy. Notably, even when working
with a relatively modest data volume at K=8, our model
manages to attain desirable outcomes. Even upon
increasing K to 16, the F1 score of our model remains superior to
that of other models. As K is further elevated to 32, the
discrepancy between our model and other pre-trained models
gradually diminishes alongside the expansion of the sample
size. Nevertheless, our model’s performance continues to
outshine that of other models. Empirical evidence
substantiates the notion that our model efectively enhances the
accuracy of biomedical relation extraction when confronted
with limited resources.</p>
      </sec>
      <sec id="sec-4-5">
        <title>4.5. Case Study</title>
        <p>As shown in Figure 3, we selected some examples from the
biomedical dataset for detailed analysis. We compare the
prediction results of BioBERT with our model. According to
Case 1, the result of the BioBERT model is Negative,
indicating that the prediction is incorrect, while our model is CPR:
9, indicating that the prediction is correct. The sentence
contains multiple biomedical entities, which makes it
dificult for the model to fully learn the Semantic information
of biomedical text. Upon integrating the biomedical entities
with the expertise found in the knowledge base, the model
is fortified to represent the said entities, facilitating a better
understanding of the textual information. The prediction
results show that our model can obtain enhanced text
representation after integrating domain knowledge, and improve
the classification efect in sentences containing complex
biomedical entities.</p>
        <p>According to Case 2, there are multiple biomedical
entities in the sentence, which makes it dificult for the model
to fully learn the Semantic information of biomedical text,
and BioBERT model makes wrong predictions. Our model
fused domain knowledge and made correct predictions.
According to Case 3, the BioBERT model incorrectly predicts
Int type text as Mechanism. The small number of Int type
training samples makes it dificult for the BioBERT model
to fully learn its class characteristics. Our model can obtain
more knowledge from limited data by introducing prompt
learning, efectively alleviating the problem of insuficient
learning knowledge when the data volume is small.
Therefore, our model made the correct prediction.</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Conclusion</title>
      <p>In this study, we propose a biomedical relation extraction
model based on domain knowledge and prompt learning.
The model can enhance entity representation by integrating
domain knowledge, thus reducing the impact of highly
technical languages and domain specific terms in biomedical
texts on model performance. By introducing prompt
learning, more knowledge can be obtained from limited data,
efectively alleviating the problem of insuficient knowledge
that models can learn when the data volume is small, thereby
improving the classification efect of biomedical relation.
The experimental results show that the model can efectively
improve the accuracy of biomedical relation extraction by
introducing domain knowledge and prompt learning.</p>
      <p>In the future, we will continue to explore the potential of
prompt learning, try diferent prompt methods, and apply
our model to document-level relation extraction.</p>
    </sec>
    <sec id="sec-6">
      <title>Acknowledgments</title>
      <p>This work is supported by grant from the Natural Science
Foundation of China (No. 62072070 and 62106034)</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>S.</given-names>
            <surname>Zhao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Su</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Lu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <article-title>Recent advances in biomedical literature mining</article-title>
          ,
          <source>Briefings in Bioinformatics</source>
          <volume>22</volume>
          (
          <year>2021</year>
          )
          <article-title>bbaa057</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>T.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , J. Leng, Y. Liu,
          <article-title>Deep learning for drug-drug interaction extraction from the literature: a review</article-title>
          ,
          <source>Briefings in bioinformatics 21</source>
          (
          <year>2020</year>
          )
          <fpage>1609</fpage>
          -
          <lpage>1627</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Xu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Zhao</surname>
          </string-name>
          ,
          <article-title>Neural network-based approaches for biomedical relation classification: a review</article-title>
          ,
          <source>Journal of biomedical informatics 99</source>
          (
          <year>2019</year>
          )
          <fpage>103294</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Qiu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Deng</surname>
          </string-name>
          , S. Liu,
          <string-name>
            <surname>W. Zhang,</surname>
          </string-name>
          <article-title>A comprehensive review of computational methods for drugdrug interaction detection</article-title>
          ,
          <source>IEEE/ACM transactions on computational biology and bioinformatics 19</source>
          (
          <year>2021</year>
          )
          <fpage>1968</fpage>
          -
          <lpage>1985</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>Q.</given-names>
            <surname>Zhao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Xu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Zhao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F. A.</given-names>
            <surname>Rajput</surname>
          </string-name>
          ,
          <article-title>Knowledge guided distance supervision for biomedical relation extraction in chinese electronic medical records</article-title>
          ,
          <source>Expert Systems with Applications</source>
          <volume>204</volume>
          (
          <year>2022</year>
          )
          <fpage>117606</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>P.</given-names>
            <surname>Su</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Vijay-Shanker</surname>
          </string-name>
          ,
          <article-title>Investigation of improving the pre-training and fine-tuning of bert model for biomedical relation extraction</article-title>
          ,
          <source>BMC bioinformatics 23</source>
          (
          <year>2022</year>
          )
          <fpage>120</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>S.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Tang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Wang</surname>
          </string-name>
          , et al.,
          <article-title>Drug-drug interaction extraction via convolutional neural networks</article-title>
          ,
          <source>Computational and mathematical methods in medicine 2016</source>
          (
          <year>2016</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>S.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Tang</surname>
          </string-name>
          ,
          <article-title>Dependency-based convolutional neural network for drug-drug interaction extraction</article-title>
          ,
          <source>in: 2016 IEEE international conference on bioinformatics and biomedicine (BIBM)</source>
          , IEEE,
          <year>2016</year>
          , pp.
          <fpage>1074</fpage>
          -
          <lpage>1080</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>M.</given-names>
            <surname>Asada</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Miwa</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Sasaki</surname>
          </string-name>
          ,
          <article-title>Extracting drug-drug interactions with attention cnns</article-title>
          ,
          <source>in: BioNLP</source>
          <year>2017</year>
          ,
          <year>2017</year>
          , pp.
          <fpage>9</fpage>
          -
          <lpage>18</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>R.</given-names>
            <surname>Kavuluru</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Rios</surname>
          </string-name>
          , T. Tran,
          <article-title>Extracting drug-drug interactions with word and character-level recurrent neural networks</article-title>
          ,
          <source>in: 2017 IEEE International Conference on Healthcare Informatics (ICHI)</source>
          , IEEE,
          <year>2017</year>
          , pp.
          <fpage>5</fpage>
          -
          <lpage>12</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>S.</given-names>
            <surname>Lim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Kang</surname>
          </string-name>
          ,
          <article-title>Drug drug interaction extraction from the literature using a recursive neural network</article-title>
          ,
          <source>PloS one 13</source>
          (
          <year>2018</year>
          )
          <article-title>e0190926</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>S. K.</given-names>
            <surname>Sahu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Anand</surname>
          </string-name>
          ,
          <article-title>Drug-drug interaction extraction from biomedical texts using long short-term memory network</article-title>
          ,
          <source>Journal of biomedical informatics 86</source>
          (
          <year>2018</year>
          )
          <fpage>15</fpage>
          -
          <lpage>24</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>V.</given-names>
            <surname>Mostafapour</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Dikenelli</surname>
          </string-name>
          ,
          <article-title>Attention-wrapped hierarchical blstms for ddi extraction</article-title>
          , arXiv preprint arXiv:
          <year>1907</year>
          .
          <volume>13561</volume>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>W.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Guo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , C. Wu,
          <article-title>Dependency-based long short term memory network for drug-drug interaction extraction</article-title>
          ,
          <source>BMC bioinformatics 18</source>
          (
          <year>2017</year>
          )
          <fpage>99</fpage>
          -
          <lpage>109</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>D.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Jiang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Zou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <article-title>Drug-drug interaction extraction from biomedical literature using support vector machine and long short term memory networks</article-title>
          ,
          <source>Information sciences 415</source>
          (
          <year>2017</year>
          )
          <fpage>100</fpage>
          -
          <lpage>109</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>W.</given-names>
            <surname>Zheng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Luo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Zhao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <article-title>An attention-based efective neural model for drug-drug interactions extraction</article-title>
          ,
          <source>BMC bioinformatics 18</source>
          (
          <year>2017</year>
          )
          <fpage>1</fpage>
          -
          <lpage>11</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , W. Zheng,
          <string-name>
            <given-names>H.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Dumontier</surname>
          </string-name>
          ,
          <article-title>Drug-drug interaction extraction via hierarchical rnns on sequence and shortest dependency paths</article-title>
          ,
          <source>Bioinformatics</source>
          <volume>34</volume>
          (
          <year>2018</year>
          )
          <fpage>828</fpage>
          -
          <lpage>835</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Peng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Rios</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Kavuluru</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Lu</surname>
          </string-name>
          ,
          <article-title>Extracting chemical-protein relations with ensembles of svm and deep learning models</article-title>
          ,
          <source>Database</source>
          <year>2018</year>
          (
          <year>2018</year>
          )
          <article-title>bay073</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <given-names>C.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Luo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <article-title>A deep learning approach with deep contextualized word representations for chemical-protein interaction extraction from biomedical literature</article-title>
          ,
          <source>IEEE Access 7</source>
          (
          <year>2019</year>
          )
          <fpage>151034</fpage>
          -
          <lpage>151046</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <article-title>Chemicalprotein interaction extraction via contextualized word representations and multihead attention</article-title>
          ,
          <year>Database 2019</year>
          (
          <year>2019</year>
          )
          <article-title>baz054</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <given-names>W.</given-names>
            <surname>Xiong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Yu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Ji</surname>
          </string-name>
          ,
          <article-title>Extracting drug-drug interactions with a dependency-based graph convolution neural network</article-title>
          ,
          <source>in: 2019 IEEE International Conference on Bioinformatics and Biomedicine (BIBM)</source>
          , IEEE,
          <year>2019</year>
          , pp.
          <fpage>755</fpage>
          -
          <lpage>759</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [22]
          <string-name>
            <given-names>C.</given-names>
            <surname>Park</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Park</surname>
          </string-name>
          , S. Park, Agcn:
          <article-title>Attention-based graph convolutional networks for drug-drug interaction extraction</article-title>
          ,
          <source>Expert Systems with Applications</source>
          <volume>159</volume>
          (
          <year>2020</year>
          )
          <fpage>113538</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [23]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Peng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Yan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Lu</surname>
          </string-name>
          ,
          <article-title>Transfer learning in biomedical natural language processing: an evaluation of bert and elmo on ten benchmarking datasets</article-title>
          , arXiv preprint arXiv:
          <year>1906</year>
          .
          <volume>05474</volume>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [24]
          <string-name>
            <given-names>J.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Yoon</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Kim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Kim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Kim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C. H.</given-names>
            <surname>So</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Kang</surname>
          </string-name>
          ,
          <article-title>Biobert: a pre-trained biomedical language representation model for biomedical text mining</article-title>
          ,
          <source>Bioinformatics</source>
          <volume>36</volume>
          (
          <year>2020</year>
          )
          <fpage>1234</fpage>
          -
          <lpage>1240</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          [25]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>An</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Ren</surname>
          </string-name>
          ,
          <article-title>Emsi-bert: Asymmetrical entity-mask strategy and symbol-insert structure for drug-drug interaction extraction based on bert</article-title>
          ,
          <source>Symmetry</source>
          <volume>15</volume>
          (
          <year>2023</year>
          )
          <fpage>398</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          [26]
          <string-name>
            <given-names>C.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Su</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <article-title>Chemical-protein interaction extraction via gaussian probability distribution and external biomedical knowledge</article-title>
          ,
          <source>Bioinformatics</source>
          <volume>36</volume>
          (
          <year>2020</year>
          )
          <fpage>4323</fpage>
          -
          <lpage>4330</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          [27]
          <string-name>
            <given-names>C.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <article-title>Attention guided capsule networks for chemical-protein interaction extraction</article-title>
          ,
          <source>Journal of Biomedical Informatics</source>
          <volume>103</volume>
          (
          <year>2020</year>
          )
          <fpage>103392</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          [28]
          <string-name>
            <given-names>X.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Tan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Fan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Tan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Hu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Dong</surname>
          </string-name>
          ,
          <article-title>A syntax-enhanced model based on category keywords for biomedical relation extraction</article-title>
          ,
          <source>Journal of Biomedical Informatics</source>
          <volume>132</volume>
          (
          <year>2022</year>
          )
          <fpage>104135</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          [29]
          <string-name>
            <given-names>M.</given-names>
            <surname>Herrero-Zazo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>I.</given-names>
            <surname>Segura-Bedmar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Martínez</surname>
          </string-name>
          , T. Declerck,
          <article-title>The ddi corpus: An annotated corpus with pharmacological substances and drug-drug interactions</article-title>
          ,
          <source>Journal of biomedical informatics 46</source>
          (
          <year>2013</year>
          )
          <fpage>914</fpage>
          -
          <lpage>920</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref30">
        <mixed-citation>
          [30]
          <string-name>
            <given-names>J.</given-names>
            <surname>Kringelum</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. K.</given-names>
            <surname>Kjaerulf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Brunak</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Lund</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T. I.</given-names>
            <surname>Oprea</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Taboureau</surname>
          </string-name>
          , Chemprot-
          <volume>3</volume>
          .
          <article-title>0: a global chemical biology diseases mapping</article-title>
          ,
          <year>Database 2016</year>
          (
          <year>2016</year>
          )
          <article-title>bav123</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref31">
        <mixed-citation>
          [31]
          <string-name>
            <surname>P.-Y. Lung</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Zhao</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          <string-name>
            <surname>He</surname>
            ,
            <given-names>J. Zhang,</given-names>
          </string-name>
          <article-title>Extracting chemical protein interactions from literature</article-title>
          ,
          <source>in: Proceedings of the BioCreative VI Workshop</source>
          ,
          <year>2017</year>
          , pp.
          <fpage>159</fpage>
          -
          <lpage>162</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref32">
        <mixed-citation>
          [32]
          <string-name>
            <given-names>H.</given-names>
            <surname>Lu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <article-title>Extracting chemicalprotein interactions from biomedical literature via granular attention based recurrent neural networks</article-title>
          ,
          <source>Computer methods and programs in biomedicine 176</source>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>