<!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>Question Entailment in Consumer Health Using a Query Formulation Approach</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Jooyeon Lee</string-name>
          <email>jlee252@gmu.edu</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Luan Huy Pham</string-name>
          <email>lpham6@gmu.edu</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>George Mason University</institution>
          ,
          <addr-line>4400 University Dr, Fairfax, VA, 22030</addr-line>
          ,
          <country>United States of Amarica</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>The need for online assistance regarding healthcare has grown significantly; a deficiency which has become readily apparent after the advent of the SARS-COV-2/COVID-19 pandemic. A widespread, trusted means of dispersing the latest medical knowledge could have provided tremendous benefit from a public health standpoint and curtailed the spread of a disease which has claimed lives of millions. Question Answering (QA) systems are well-suited to provide this assistance for medical professionals and the public at large, especially considering the increased adoption of virtual digital assistants such as Samsung's Bixby and Google Assistant in recent years. The overall performance of QA systems can be improved by a variety of methods, including entailment-based methods. In this paper, we propose a Query-Based Framework for Recognizing Question Entailment (QBF-RQE), which leverages a query formulation method to identify whether two questions are in an entailment relationship - with a specific emphasis on Consumer Health Questions (CHQs). Our approach also incorporates type and focus features of CHQs to determine the entailment relationship. We evaluate our approach with the MEDIQA 2019 shared task organized at the ACL-BioNLP workshop. Our method gives 83.48%, while the best-performing</p>
      </abstract>
      <kwd-group>
        <kwd>Approach</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        The purpose of the entailment recognition (or recognition) task is to classify the entailment
relationship between a text pair (usually two separate sentences), which are known as the
premise and the hypothesis. The entailment relationship are classified as:
entailment (the
hypothesis having a similar meaning as the premise), neutral (hypothesis having similar lexical
items but has a diferent meaning than the premise), and
contradiction (hypothesis having
contradicting meaning versus the premise) relation [
        <xref ref-type="bibr" rid="ref1 ref2">1, 2</xref>
        ]. Within entailment recognition, there
exists Recognizing Question Entailment (RQE) where both the premise and the hypothesis
are question sentences. Harabagiu and Hickl showed improving performance for RQE also
improves the QA system in the general domain [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. Furthermore, Demner-Fushman et al. showed
applicability to the CHQ domain as well by augmenting their Consumer Health Information
Question Answering (CHiQA) system with a specific module for RQE [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ].
      </p>
      <p>
        According to Abacha and Demner-Fushman, the definition of entailment in QA is as follows:
“a question A entails a question B if every answer to B is also a complete or partial answer to A”
[
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. The primary goal of RQE is to ensure the answers of the premise and the answers of the
hypothesis align with the entailment relationship, per the definition of entailment. According
to Ben Abacha and Demner-Fushman, achieving this goal in QA requires multiple, diferent
approaches [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ].
      </p>
      <p>
        We propose a new framework – QBF-RQE – which recognizes entailment relations based on
the query formulation approach. Our framework leverages insights from Abacha and
DemnerFushman’s CHiQA model, which uses type and focus information to form a query to retrieve
answers using multiple AI models [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. Thus, if the hypothesis has the same focus and/or type as
the premise, the retrieved answers to a premise can be a partial or full answer to the answers of
the hypothesis. We can state the hypothesis is an entailment of the premise.
      </p>
      <p>While AI models would be ideally trained with premise and hypothesis pairs to achieve high
performance, there is a relative lack of suitable, generally-available datasets for CHQA. To
directly address this aforementioned lack of available datasets, we attempted several diferent
approaches to augment the oficial MEDIQA 2019 training set, via several merging-based
methodologies: 1) a module trained with a premise and hypothesis pairs 2) a module trained
with question (Entailment Recognition Module: ER Module) and type pairs (Type Recognition
Module: TR Module) 3) a module trained with question and focus pairs (Focus Recognition
Module: FR Module), as shown in Figure 1.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Datasets</title>
      <p>In this section, we describe datasets used to train and test our pipeline modules. The overall
performance of RQE in CHQ is measured with the MEDIQA 2019 RQE Challenge test set.</p>
      <sec id="sec-2-1">
        <title>2.1. Entailment Datasets</title>
        <p>
          This section describes the dataset used for the ER module. We use diferent combinations of
MeQSum, the MEDIQA 2019 training set, and the MEDIQA 2019 NLI dataset for training.
1. MEDIQA2019 RQE Datasets1: This dataset consists of sets of text-hypothesis pairs (clinical
questionquestion pairs) provided by Abacha et al., Ben Abacha and Demner-Fushman at NLM. The pairs are labeled
either Entailment or Not-Entailment. In the 8,890-pair training set, 4,680 pairs were labeled Entailment and
3,963 pairs were Not-Entailment. In the 302-pair validation set, 129 pairs were labeled Entailment and 173
pairs were Not-Entailment. In the 230-pair test set, the pairs are evenly divided with 115 each.
2. MeQSum2: We leveraged the fact that answers from summarized CHQ should result in the same answers as
the original CHQ to include MeQSum to our RQE task training set. The dataset [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ], also provided by the
NLM group, includes 1,000 pairs of CHQ and summarized CHQ.
3. MEDIQA2019 NLI Datasets3: While not consisting of pairs in question form, a few teams incorporated
MEDIQA-NLI (MedNLI) [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ] in the MEDIQA 2019 RQE task [
          <xref ref-type="bibr" rid="ref10 ref11">10, 11</xref>
          ]. The dataset includes clinical sentence
pairs: Entailment (3,744 pairs), Neutral (3,744 pairs) and Contradiction (3,744 pairs). Each label has 465 pairs
in the validation set, and 474 pairs in the test set.
1https://github.com/abachaa/MEDIQA2019/tree/master/MEDIQA_Task2_RQE
2https://github.com/abachaa/MeQSum
3https://physionet.org/content/mednli-bionlp19/1.0.1/
        </p>
      </sec>
      <sec id="sec-2-2">
        <title>2.2. Type and Focus Datasets</title>
        <p>This section describes the dataset used to train and test the TR module and FR module. For
the TR module for RQE task, we use LiveQA, MedInfo and MedQuAD to train the model. For
the TR task itself, we use the LiveQA training set, MedInfo and MedQuAD to train, and the
LiveQA test set to measure the performance of each model to compare the performance with the
baseline (Demner-Fushman et al.). The type names and their frequencies are shown in Table 6
in Appendix A.2. For the FR, we consider disease names as a focus of the CHQs to be consistent
with the answer retrieval method of CHiQA. LiveQA, MedQuAD, and MedInfo all are in the
CHQ domain and have focus entities labeled. However, the Named Entity Recognition (NER)
task to identify disease names are already widely available, and for the purposes of this paper,
we do not perform re-training for the NER task with CHQ datasets.</p>
        <p>
          1. TREC-2017 LiveQA4: The TREC-2017 LiveQA: Medical Question Answering Task [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ] organizer provides a
dataset (LiveQA) that has 446 pairs in the training set and 104 pairs in the test set.
2. MedInfo5: The MedInfo [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ] dataset is about medication CHQs. The dataset has CHQs, answers, focus,
type, section title and URL of the information source.
        </p>
        <p>
          3. MedQuAD6: MedQuAD [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ] has 47,457 pairs of medical questions/answers created from NIH websites.
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>3. Methodology</title>
      <p>We describe our model in this section. Our model has 3 modules for diferent tasks: ER, TR and
FR. The detailed architecture of our model is shown in Figure 1. All the models are
transformerbased models, and we use pretrained models publicly available in the Hugging Face repository.
The parameters we used are listed in Appendix B.</p>
      <sec id="sec-3-1">
        <title>4https://github.com/abachaa/LiveQA_MedicalTask_TREC2017 5https://github.com/abachaa/Medication_QA_MedInfo2019 6https://github.com/abachaa/MedQuAD</title>
        <sec id="sec-3-1-1">
          <title>3.1. ER Module</title>
          <p>For ER, we experiment with 4 diferent dataset combinations with 6 diferent models.
Data With MedNLI, MedQuAD and MEDIQA2019, we create 4 combinations of sets: 1)
MEDIQA 2019 training set, 2) MEDIQA 2019 training set + MedNLI, 3) MEDIQA 2019 training
set + MeQSUM, 4) MEDIQA 2019 training set + MeQSUM + MedNLI.</p>
          <p>
            Model
1. Bio-Clinical-BERT: Bio-Clinical-BERT [
            <xref ref-type="bibr" rid="ref13">13</xref>
            ] is domain-specific contextual word embedding model, which is
initialized with BIOBERT model and trained on all MIMIC notes [
            <xref ref-type="bibr" rid="ref14">14</xref>
            ].
2. BiomedNLP-PubMedBERT-base-uncased-abstract Gu et al. provide a BERT-based neural language model
pretrained on the biomedical NLP benchmark. BiomedNLP-PubMedBERT-base-uncased-abstract-fulltext and
BiomedNLP-PubMedBERT-base-uncased -abstract are pretrained models which are available in the Hugging
Face repository78.
3. BioELECTRA-base-discriminator-PubMed BioELECTRA-base-discriminator-PubMed [
            <xref ref-type="bibr" rid="ref16">16</xref>
            ] is a pretrained
ELECTRA model-based, biomedical domain-specific language model using discriminators, showing great
performance in MedNLI [
            <xref ref-type="bibr" rid="ref9">9</xref>
            ] (Language inference task), i2b2-2010 [
            <xref ref-type="bibr" rid="ref17">17</xref>
            ] (NER and relation extraction task),
ShARe/CLEFE [
            <xref ref-type="bibr" rid="ref18">18</xref>
            ] (NER task) and ClinicalSTS [
            <xref ref-type="bibr" rid="ref19">19</xref>
            ] (Sentence Similarity task).
4. BioMed-RoBERTa-base BioMed-RoBERTa-base [
            <xref ref-type="bibr" rid="ref20">20</xref>
            ] is a language model based on the RoBERTa-base [
            <xref ref-type="bibr" rid="ref21">21</xref>
            ]
model, fine-tuned with 2.68 million scientific papers from the Semantic Scholar corpus. Both full-text of
papers and abstracts were used to train.
          </p>
        </sec>
        <sec id="sec-3-1-2">
          <title>3.2. TR Module</title>
          <p>Data We union labels of the LiveQA (26 types), MedInfo (17 types) and MedQuAD (16 types
in Disease-related questions, 20 types in the drug category), resulting in 38 labels. For similar
labels, we prioritized matching with LiveQA labels. Specific details regarding the label union
methodology/procedure as well as the labels after union are shown in the bottom row of Table 6
in Appendix A.1.</p>
          <p>Model</p>
          <p>We use the same models in the TR module as those in the ER Module.</p>
          <p>Entailment Score We measure the score as either 1 or 0 (Consistent or Not-Consistent),
based on overlapping type labels. If there is any overlap between the type of text and the type
of hypothesis, then we consider it Consistent. If there are no overlaps, then it is Not-Consistent.</p>
        </sec>
        <sec id="sec-3-1-3">
          <title>3.3. FR Module</title>
          <p>
            NER tasks to identify disease names are popular research area and publicly-available datasets
and models are easily accessible. For this paper, we used 2 of the state-of-the-art models for
the task and selected the one that gives higher accuracy based on the validation set. One is
biobert-diseases-ner [
            <xref ref-type="bibr" rid="ref22">22</xref>
            ], which is a BERT-based model trained on NCBI-disease.
NER-diseasencbi-bionlp-bc5cdr-PubMed [
            <xref ref-type="bibr" rid="ref23">23</xref>
            ] is a RoBERTa-based model [
            <xref ref-type="bibr" rid="ref21">21</xref>
            ], trained on NCBI-disease and
BC5CDR datasets.
          </p>
          <p>
            7https://huggingface.co/microsoft/BiomedNLP-PubMedBERT-base-uncased-abstract
8https://huggingface.co/microsoft/BiomedNLP-PubMedBERT-base-uncased-abstract-fulltext
Entailment Score We test 2 diferent methods to measure the score: 1) Exact-Match, and 2)
Similarity-Based Match. Exact-Match occurs when there is overlap in disease names; which we
then classify as entailment. If there is no overlap, then it is not entailment. Similarity-Based
Match is utilized to address minor diferences/typos in the disease names. We measure the
similarity score between each focus in the premise and the hypothesis. If the similarity scores
of focus in the hypothesis and premise score is above a threshold, then we consider the pairs
to be in an entailment relationship. The similarity score is measured with the
S-BioBert-snlimultinli-stsb sentence similarity model [
            <xref ref-type="bibr" rid="ref24">24</xref>
            ] and the spaCy sentence similarity model [
            <xref ref-type="bibr" rid="ref25">25</xref>
            ].
S-BioBert-snli-multinli-stsb model is BioBERT [
            <xref ref-type="bibr" rid="ref26">26</xref>
            ] finetuned with several language inference
datasets: SNLI [
            <xref ref-type="bibr" rid="ref27">27</xref>
            ], MultiNLI [
            <xref ref-type="bibr" rid="ref28">28</xref>
            ] and STS-b [
            <xref ref-type="bibr" rid="ref29">29</xref>
            ]. The spaCy model measures similarity by
measuring the distance between word vectors trained on a large English general domain.
3.4. Merge
          </p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Evaluation</title>
      <p>To merge the results, we test a majority-voting and a weighted-voting system.
In this section, we discuss the overall performance of the QBF-RQE, along with the performance
of each individual module.</p>
      <sec id="sec-4-1">
        <title>4.1. QBF-RQE Results</title>
        <p>We measure the performance of the QBF-RQE by calculating the number of correctly-predicted
labels over the total number of premise and hypothesis pairs. We then compare our results to
the results of the MEDIQA 2019 challenge participants. In Table 1, we list the results of each
module for the RQE task, along with the pipeline result with the majority-voting method, and
the pipeline result with the weighted-voting methods. The table also includes the list of results
from the top 3 best-performing teams at MEDIQA 2019. With the test set, we had 8.58% higher
accuracy than the best-performing team.</p>
      </sec>
      <sec id="sec-4-2">
        <title>4.2. Module Performance</title>
        <sec id="sec-4-2-1">
          <title>We evaluate each module of the pipeline separately.</title>
          <p>4.2.1. ER Module
We evaluated the performance of 5 diferent models and 4 diferent combinations of datasets for
the ER module. As shown in Table 2, augmenting training set with MedNLI, or MeQSum gives
higher performance for all models.</p>
          <p>
            Both the MEDIQA training set+MedNLI combination and the MEDIQA training set+MeQSum
combination demonstrated a greater than 10% increase vs just the MEDIQA 2019 training
set. This shows that augmenting the MEDIQA 2019 helps to improve RQE models. However,
merging the MedNLI, MeQSUM and MEDIQA training sets together did not necessarily improve
the performance. Combining all datasets gave the best score of 80.99% and the average score of
QBF-RQE ER module alone
QBF-RQE TR module alone
QBF-RQE FR module alone
QBF-RQE Merged with majority-voting system
QBF-RQE Merged with a weighted-voting system (Entailment-Pair model)
QBF-RQE Merged with a weighted-voting system (Type model)
QBF-RQE Merged with a weighted-voting system (Focus model)
QBF-RQE Entailment ∪ Type&amp;Focus
MEDIQA 2019 Participants: Method Description
PANLP: Ensemble, transfer learning, re-ranking with BERT, MT-DNN (Zhu
et al. [
            <xref ref-type="bibr" rid="ref10">10</xref>
            ])
Sieg: MT-DNN with data RQE+QQP+GARD (Bhaskar et al. [
            <xref ref-type="bibr" rid="ref30">30</xref>
            ])
IIT-KGP: The best model result for Test set - Sci-BERT+Hinge Loss (Sharma
and Roychowdhury [
            <xref ref-type="bibr" rid="ref31">31</xref>
            ])
IIT-KGP: The best model result for Val Set - QSpider (Sharma and
Roychowdhury [
            <xref ref-type="bibr" rid="ref31">31</xref>
            ])
          </p>
          <p>
            Baseline - SVM (Ben Abacha et al. [
            <xref ref-type="bibr" rid="ref32">32</xref>
            ])
79.13%, which is higher than the MEDIQA + MedNLI combination, but lower than the MEDIQA
+ MeQSUM combination. We can therefore conclude that MedNLI may increase performance
with a training set which is relatively small/limited, but if there is a training set that has closer
characteristics to the test set, merging with MedNLI may not be advantageous.
          </p>
          <p>For the test accuracy on Table 2, we selected the dataset combination which gave the best
accuracy to the validation set (MEDIQA 2019 + MeQSum) and added the MEDIQA 2019 validation
set to the training set to train and tested on the MEDIQA 2019 test set.
4.2.2. TR Module
Demner-Fushman et al. thoroughly investigated the individual TR and FR models using Recall,
Precision and F1 score with LiveQA test set. They used combinations of SVM and rule-based
methods (regular expressions) and deep learning methods to extract the Type from CHQs. We
consider this method as a baseline and compare it with our models. As shown in Table 3, simply
merging LiveQA, MedInfo and MedQuAD showed improved performance.</p>
          <p>We use the same models to test the ER purpose, to pick the best performing model and plug
it into the pipeline, BiomedNLP-PubMedBERT-base-uncased-abstract-fulltext showed the best
performance on both the test and validation set. Results are shown in Table 4.
4.2.3. FR Module
ner-disease-ncbi-bionlp-bc5cdr-PubMed shows slightly higher performance than
biobert-diseasener model for the RQE task. Therefore, QBF-RQE results listed in the Section 1,
ner-disease-ncbiModel with Train-set, MedNLI, MeQSum
Bio-Clinical-BERT
BiomedNLP-PubMedBERT-base-uncased-abstract-full text
BiomedNLP-PubMedBERT-base-uncased-abstract
BioELECTRA-base-discriminator-PubMed
BioELECTRA-base-discriminator-PubMed-PMC-lt
Biomed-RoBERTa-base
Model with Train-set, MedNLI
Bio-Clinical-BERT
BiomedNLP-PubMedBERT-base-uncased-abstract-fulltext
BiomedNLP-PubMedBERT-base-uncased-abstract
BioELECTRA-base-discriminator-PubMed
BioELECTRA-base-discriminator-PubMed-PMC-lt
Biomed-RoBERTa-base
Model with Train-set, MeQSum
Bio-Clinical-BERT
BiomedNLP-PubMedBERT-base-uncased-abstract-fulltext
BiomedNLP-PubMedBERT-base-uncased-abstract
BioELECTRA-base-discriminator-PubMed
BioELECTRA-base-discriminator-PubMed-PMC-lt
Biomed-RoBERTa-base
Model with Train-set
Bio-Clinical-BERT
BiomedNLP-PubMedBERT-base-uncased-abstract-fulltext
BiomedNLP-PubMedBERT-base-uncased-abstract
BioELECTRA-base-discriminator-PubMed
BioELECTRA-base-discriminator-PubMed-PMC-lt
Biomed-RoBERTa-base
Model with Train-set, MeQSum, Validation set
Bio-Clinical-BERT
BiomedNLP-PubMedBERT-base-uncased-abstract-fulltext
BiomedNLP-PubMedBERT-base-uncased-abstract
BioELECTRA-base-discriminator-PubMed
BioELECTRA-base-discriminator-PubMed-PMC-lt</p>
          <p>Biomed-RoBERTa-base
bionlp-bc5cdr-PubMed model was used for the FR module, with the entailment score calculated
with the Similarity-Based Match method. Exact accuracy is listed on the Table 5.</p>
        </sec>
      </sec>
      <sec id="sec-4-3">
        <title>4.3. Limitations and Future work</title>
        <p>While the performance of the QBF-RQE is generally improved by combining multiple
modules, it is important to note that if the accuracy of a single module is significantly lower for
a particular use case, the net efect can decrease overall performance. This characteristic is
prominent on the test set. Individual module accuracy of the ER module, TR module and FR
Data
Bio-Clinical-BERT
BiomedNLP-PubMedBERT-base-uncased-abstract-fulltext
BiomedNLP-PubMedBERT-base-uncased-abstract
BioELECTRA-base-discriminator-PubMed
BioELECTRA-base-discriminator-PubMed-PMC-lt
Biomed-RoBERTa-base</p>
        <p>
          SVM+Rule-Based+BiLSTM (Demner-Fushman et al. [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ])
Bio-Clinical-BERT
BiomedNLP-PubMedBERT-base-uncased-abstract-fulltext
BiomedNLP-PubMedBERT-base-uncased-abstract
BioELECTRA-base-discriminator-PubMed
BioELECTRA-base-discriminator-PubMed-PMC-lt
        </p>
        <p>Biomed-RoBERTa-base
modules are 57.39%, 82.17% and 51.3% respectively. The TR Module has the highest recognition
and diference of accuracy between the TR module vs FR and ER modules is more than 20%.
With the majority-voting system, we can see the accuracy reduced to 60% from 82.17%. With
weighted-voting based on type, the accuracy is increased by 1.31%. Therefore, when using this
approach, it is advantageous primarily when the individual modules have a balanced
performance profile. Otherwise, simply employ the module with the best performance, particularly
when the individual module is has an overwhelmingly superior performance profile. Second,
when there is an bias in performance in one module (though not to an overwhelming degree),
the weighted merge imparts improved performance. In the future, we hope to explore methods
to further improve the performance of each module and hopefully investigate the diferent
methods to merge the ER, FR and TR modules.</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Conclusion</title>
      <p>Ideally, the best scenario for RQE would be having one AI model and suitably training the dataset
with appropriate premise and hypothesis pairs. But, the CHQ domain lacks such a dataset,
which therefore limits the performance of the AI models. However, we showed significant
improvement in performance in RQE in the CHQ domain by using the query formulation
method inspired by the definition of Entailment in QA. In the future, we hope to investigate
diferent ways to incorporate queries and study diferent methods of extracting queries (not
limited to question focus and type characteristics) to build a more versatile RQE pipeline.</p>
    </sec>
    <sec id="sec-6">
      <title>A. Drug Label Merge Details</title>
      <sec id="sec-6-1">
        <title>A.1. Union Labels</title>
        <p>To avoid redundant labels, we merged labels originating in diferent datasets which are
functionally identical but possess minor variations in spelling. The bottom row in Table 6 contains
the labels resulting from the union of LiveQA, MedInfo and MedQuAD. The labels in black
originated in LiveQA. Blue labels are labels that originated in MedInfo that do not exist in
LiveQA. Red labels only exist in MedQuAD.</p>
        <p>We union the labels manually, setting the priority of labels as: #1 LiveQA, #2 MedInfo and #3
MedQuAD. We prioritized LiveQA due to its previous use in CHiQA research, better facilitating
comparisons. Thus, we rename the labels to match the spelling as it exists with LiveQA, if
possible. If the label does not exist in the LiveQA but only in MedInfo and MedQuAD, we
arbitrarily modified the MedQuAD label to match with MedInfo. For example, side efects in
MedInfo is modified to side-efect to match with LiveQA, while side efects, severe reaction
in MedQuAD are modified to side-efect to match with LiveQA. In Table 6, the example is
represented as “side efects( side efects, side efects,severe reaction )”.</p>
        <p>Another manual task is to identify entailment relationships. For the purposes of the paper, if
the two types are in an obvious entailment relationship, we unified the labels. The label special
instructions, important warning, precautions, are renamed to considerations. In Table 6, the
example is represented as “considerations(special instructions, important warning, precautions)”.</p>
      </sec>
      <sec id="sec-6-2">
        <title>A.2. Union Datasets</title>
        <p>After merging the 3 datasets with the method mentioned in Appendix A.1, the total number of
questions and the type pairs are 48,577 and the total number of labels is 38. Due to the resource
limitations and to prevent the dataset from overfitting on MedQuAD characteristics, we only
select a max of 500 question and type pairs for each type. Among the 48,577, more than 97%
of the dataset is from MedQuAD. With this limit, we have a total of 12,620 pairs. The detailed
distribution is listed in Table 7.</p>
      </sec>
    </sec>
    <sec id="sec-7">
      <title>B. Parameters</title>
      <p>We use default parameters of hugging face for 6 models for ER and TR except warmup_steps,
save_steps, batch size, epochs, weight_decay and learning_rate. We perform a grid search
method to find an optimal parameter for each model: warmup_steps=100, save_steps = 500,
batch size = 16, epochs = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, weight_decay={0.01, 0.1}, learning_rate
= {5e-6, 1e-5, 5e-5, 1e-4}. weight_decay of 0.01 gave the best result for all tasks and models.
learing_rate of 5e-5 gave the best results for the TR module. For the ER module, the best results
were given when learning_rates lies between 1e-5 and 5e-5. Bio-Clinical-BERT,
BiomedNLPPubMedBERT-base-uncased-abstract-fulltext, Biomed-RoBERTa-base results are model results
with learning_rate of 1e-5. BiomedNLP-PubMedBERT-base-uncased-abstract,
BioELECTRAbase-discriminator-PubMed and BioELECTRA-base-discriminator-PubMed-PMC-lt results are
models trained with learning_rate of 5e-5.
LiveQA
MedInfo
MedQuAD
Union
treatment, information, cause, diagnosis, susceptibility, interaction,
person-organization, side-efect, efect, ingredient, prevention,
symptom, tapering, usage, complication, contraindication, dosage,
indication, prognosis, storage-disposal, comparison, inheritance, action,
alternative, lifestyle-diet, other-question, genetic changes, resources
information, dose, usage, side efects, indication, interaction, action,
appearance, usage/time, stopping/tapering, ingredient, action/time,
storage and disposal, comparison, contraindication, overdose,
alternatives, usage/duration, time, brand names, combination, pronunciation,
manufacturer, availability, long term consequences
Diseases: information, research (or clinical trial), causes, treatment,
prevention, diagnosis (exams and tests), prognosis, complications,
symptoms, inheritance, susceptibility, genetic changes, frequency,
considerations, contact a medical professional, support groups
Drugs: information, interaction with medications, interaction with
food, interaction with herbs and supplements, important warning,
special instructions, brand names, how does it work, how efective is it,
indication, contraindication, learn more, side efects, emergency or
overdose, severe reaction, forget a dose, dietary, why get vaccinated,
storage and disposal, usage, dose, precaution
Medical Entities (ME): information
treatment, information(other-question,learn more), cause(causes),
diagnosis, susceptibility, interaction(interaction with food, interaction
with herbs and supplements,interaction with medications),
personorganization(contact a medical professional,support groups),
sideefect( side efects ,side efects,severe reaction ), efect( how efective
is it), ingredient, prevention, symptom(symptoms),
tapering(stopping/tapering), usage, complication(complications), contraindication,
dosage(dose,overdose,dose,forget a dose,emergency or overdose),
indication, prognosis(long term consequences),
storage-disposal(storage and disposal,storage and disposal), comparison, inheritance,
action(how does it work), alternative, lifestyle-diet(dietary), genetic
changes, resources(research),
appearance, time(duration), comparison, alternatives, brand names,
combination, pronunciation, manufacturer, availability,
frequency, considerations(special instructions,important
warning,precautions), why get vaccinated
# of Pairs /
# of Labels
Train:
(p) 446 / (L) 23
Test:
(P) 104 / (L) 26
(P) 674 / (L) 25
(P) 47,457 /
(L-disease) 16,
(L-drug) 20,
(L-ME) 1
Train:
(P) 48,577 / (L) 38
Test:
(P) 104 / (L) 26
information
symptom
treatment
consideration
cause
dosage
prognosis
diagnosis
organization
brand names
inheritance
side_efect
usage
indication
prevention
storage_disposal
complication
frequency
lifestyle_diet
genetic changes
susceptibility
resources
interaction
action
efect
stages
time
tapering
appearance
contraindication
ingredient
why get vaccinated
comparison
alternative
pronounce name
combination
manufacturer
availability</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>T.</given-names>
            <surname>Neeraj</surname>
          </string-name>
          , Semantic entailment, trishalaneeraj.github.io (
          <year>2020</year>
          ). URL: https://trishalaneeraj. github.io/2017-12-22/semantic-entailment.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>A.</given-names>
            <surname>Paramasivam</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. J.</given-names>
            <surname>Nirmala</surname>
          </string-name>
          ,
          <article-title>A survey on textual entailment based question answering</article-title>
          ,
          <source>Journal of King</source>
          Saud University - Computer and Information Sciences (
          <year>2021</year>
          ). URL: https: //www.sciencedirect.com/science/article/pii/S1319157821003311. doi:https://doi.org/ 10.1016/j.jksuci.
          <year>2021</year>
          .
          <volume>11</volume>
          .017.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>S.</given-names>
            <surname>Harabagiu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Hickl</surname>
          </string-name>
          ,
          <article-title>Methods for using textual entailment in open-domain question answering</article-title>
          ,
          <source>in: Proceedings of the 21st International Conference on Computational Linguistics</source>
          and
          <article-title>44th Annual Meeting of the Association for Computational Linguistics, Association for Computational Linguistics</article-title>
          , Sydney, Australia,
          <year>2006</year>
          , pp.
          <fpage>905</fpage>
          -
          <lpage>912</lpage>
          . URL: https://aclanthology.org/P06-1114. doi:
          <volume>10</volume>
          .3115/1220175.1220289.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>D.</given-names>
            <surname>Demner-Fushman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Mrabet</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Ben</surname>
          </string-name>
          <string-name>
            <surname>Abacha</surname>
          </string-name>
          ,
          <article-title>Consumer health information and question answering: helping consumers find answers to their health-related information needs</article-title>
          ,
          <source>Journal of the American Medical Informatics Association</source>
          <volume>27</volume>
          (
          <year>2019</year>
          )
          <fpage>194</fpage>
          -
          <lpage>201</lpage>
          . doi:
          <volume>10</volume>
          . 1093/jamia/ocz152.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>A. B.</given-names>
            <surname>Abacha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Demner-Fushman</surname>
          </string-name>
          ,
          <article-title>A question-entailment approach to question answering</article-title>
          , CoRR abs/
          <year>1901</year>
          .08079 (
          <year>2019</year>
          ). URL: http://arxiv.org/abs/
          <year>1901</year>
          .08079. arXiv:
          <year>1901</year>
          .08079.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>A.</given-names>
            <surname>Ben Abacha</surname>
          </string-name>
          ,
          <string-name>
            <surname>D.</surname>
          </string-name>
          Demner-Fushman,
          <article-title>Recognizing question entailment for medical question answering</article-title>
          ,
          <source>in: AMIA</source>
          <year>2016</year>
          , American Medical Informatics Association Annual Symposium, Chicago, IL, USA, November
          <volume>12</volume>
          -
          <issue>16</issue>
          ,
          <year>2016</year>
          ,
          <year>2016</year>
          . URL: https://www.ncbi.nlm. nih.gov/pmc/articles/PMC5333286/.
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>A. B.</given-names>
            <surname>Abacha</surname>
          </string-name>
          , E. Agichtein,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Pinter</surname>
          </string-name>
          ,
          <string-name>
            <surname>D.</surname>
          </string-name>
          <article-title>Demner-Fushman, Overview of the medical question answering task at trec 2017 liveqa</article-title>
          , in: TREC,
          <year>2017</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>A.</given-names>
            <surname>Ben Abacha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Demner-Fushman</surname>
          </string-name>
          ,
          <article-title>On the summarization of consumer health questions, in: Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, Association for Computational Linguistics</article-title>
          , Florence, Italy,
          <year>2019</year>
          , pp.
          <fpage>2228</fpage>
          -
          <lpage>2234</lpage>
          . URL: https://aclanthology.org/P19-1215. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>P19</fpage>
          - 1215.
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>A.</given-names>
            <surname>Romanov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Shivade</surname>
          </string-name>
          ,
          <article-title>Lessons from natural language inference in the clinical domain</article-title>
          , CoRR abs/
          <year>1808</year>
          .06752 (
          <year>2018</year>
          ). URL: http://arxiv.org/abs/
          <year>1808</year>
          .06752. arXiv:
          <year>1808</year>
          .06752.
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>W.</given-names>
            <surname>Zhu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Luo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Ni</surname>
          </string-name>
          , G. Xie, PANLP at MEDIQA 2019:
          <article-title>Pretrained language models, transfer learning and knowledge distillation</article-title>
          ,
          <source>in: Proceedings of the 18th BioNLP Workshop</source>
          and Shared Task, Association for Computational Linguistics, Florence, Italy,
          <year>2019</year>
          , pp.
          <fpage>380</fpage>
          -
          <lpage>388</lpage>
          . URL: https://aclanthology.org/W19-5040. doi:
          <volume>10</volume>
          .18653/ v1/
          <fpage>W19</fpage>
          - 5040.
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>H.</given-names>
            <surname>Pugaliya</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Saxena</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Garg</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Shalini</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Gupta</surname>
          </string-name>
          , E. Nyberg, T. Mitamura, Pentagon at MEDIQA 2019:
          <article-title>Multi-task learning for filtering and re-ranking answers using language inference and question entailment</article-title>
          , CoRR abs/
          <year>1907</year>
          .01643 (
          <year>2019</year>
          ). URL: http://arxiv.org/abs/
          <year>1907</year>
          .01643. arXiv:
          <year>1907</year>
          .01643.
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>A.</given-names>
            <surname>Ben Abacha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Mrabet</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Sharp</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Goodwin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. E.</given-names>
            <surname>Shooshan</surname>
          </string-name>
          ,
          <string-name>
            <surname>D.</surname>
          </string-name>
          <article-title>Demner-Fushman, Bridging the gap between consumers' medication questions and trusted answers</article-title>
          ,
          <source>in: MEDINFO</source>
          <year>2019</year>
          ,
          <year>2019</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>E.</given-names>
            <surname>Alsentzer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. R.</given-names>
            <surname>Murphy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Boag</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Weng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Jin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Naumann</surname>
          </string-name>
          ,
          <string-name>
            <surname>M. B. A. McDermott</surname>
          </string-name>
          ,
          <article-title>Publicly available clinical BERT embeddings</article-title>
          , CoRR abs/
          <year>1904</year>
          .03323 (
          <year>2019</year>
          ). URL: http: //arxiv.org/abs/
          <year>1904</year>
          .03323. arXiv:
          <year>1904</year>
          .03323.
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>A.</given-names>
            <surname>Johnson</surname>
          </string-name>
          , T. Pollard,
          <string-name>
            <given-names>L.</given-names>
            <surname>Shen</surname>
          </string-name>
          , L.-w. Lehman,
          <string-name>
            <given-names>M.</given-names>
            <surname>Feng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Ghassemi</surname>
          </string-name>
          , B. Moody, P. Szolovits,
          <string-name>
            <given-names>L.</given-names>
            <surname>Celi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Mark</surname>
          </string-name>
          ,
          <article-title>Mimic-iii, a freely accessible critical care database</article-title>
          ,
          <source>Scientific Data</source>
          <volume>3</volume>
          (
          <year>2016</year>
          )
          <article-title>160035</article-title>
          . doi:
          <volume>10</volume>
          .1038/sdata.
          <year>2016</year>
          .
          <volume>35</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Gu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Tinn</surname>
          </string-name>
          , H. Cheng, M. Lucas,
          <string-name>
            <given-names>N.</given-names>
            <surname>Usuyama</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Naumann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Gao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Poon</surname>
          </string-name>
          ,
          <article-title>Domain-specific language model pretraining for biomedical natural language processing</article-title>
          ,
          <year>2020</year>
          . arXiv:arXiv:
          <year>2007</year>
          .15779.
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>K.</given-names>
            <surname>r. Kanakarajan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Kundumani</surname>
          </string-name>
          , M. Sankarasubbu,
          <article-title>BioELECTRA:pretrained biomedical text encoder using discriminators</article-title>
          ,
          <source>in: Proceedings of the 20th Workshop on Biomedical Language Processing</source>
          , Association for Computational Linguistics, Online,
          <year>2021</year>
          , pp.
          <fpage>143</fpage>
          -
          <lpage>154</lpage>
          . URL: https://aclanthology.org/
          <year>2021</year>
          .bionlp-
          <volume>1</volume>
          .16. doi:
          <volume>10</volume>
          .18653/v1/
          <year>2021</year>
          .bionlp-
          <volume>1</volume>
          .
          <fpage>16</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <surname>Uzuner</surname>
            ,
            <given-names>B. R.</given-names>
          </string-name>
          <string-name>
            <surname>South</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Shen</surname>
            ,
            <given-names>S. L.</given-names>
          </string-name>
          <string-name>
            <surname>DuVall</surname>
          </string-name>
          ,
          <year>2010</year>
          i2b2/
          <article-title>VA challenge on concepts, assertions, and relations in clinical text</article-title>
          ,
          <source>Journal of the American Medical Informatics Association</source>
          <volume>18</volume>
          (
          <year>2011</year>
          )
          <fpage>552</fpage>
          -
          <lpage>556</lpage>
          . URL: https://doi.org/10.1136/amiajnl-2011-000203. doi:
          <volume>10</volume>
          . 1136/amiajnl- 2011
          <source>- 000203</source>
          . arXiv:https://academic.oup.com/jamia/articlepdf/18/5/552/33015279/18-5-552.pdf.
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <given-names>L.</given-names>
            <surname>Kelly</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Goeuriot</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Suominen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Schreck</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Leroy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. L.</given-names>
            <surname>Mowery</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Velupillai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W. W.</given-names>
            <surname>Chapman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Martínez</surname>
          </string-name>
          , G. Zuccon,
          <string-name>
            <given-names>J.</given-names>
            <surname>Palotti</surname>
          </string-name>
          ,
          <article-title>Overview of the share/clef ehealth evaluation lab 2013</article-title>
          , in: CLEF,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Fu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Shen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Henry</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Uzuner</surname>
          </string-name>
          , H. Liu,
          <article-title>The 2019 n2c2/ohnlp track on clinical semantic textual similarity: Overview</article-title>
          ,
          <source>JMIR Med Inform</source>
          <volume>8</volume>
          (
          <year>2020</year>
          )
          <article-title>e23375</article-title>
          . URL: http://medinform.jmir.org/
          <year>2020</year>
          /11/e23375/. doi:
          <volume>10</volume>
          .2196/23375.
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <given-names>S.</given-names>
            <surname>Gururangan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Marasović</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Swayamdipta</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>I.</given-names>
            <surname>Beltagy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Downey</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N. A.</given-names>
            <surname>Smith,</surname>
          </string-name>
          <article-title>Don't stop pretraining: Adapt language models to domains and tasks</article-title>
          ,
          <source>in: Proceedings of ACL</source>
          ,
          <year>2020</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Ott</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Goyal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Du</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Joshi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Levy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Lewis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Zettlemoyer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Stoyanov</surname>
          </string-name>
          ,
          <article-title>Roberta: A robustly optimized BERT pretraining approach</article-title>
          , CoRR abs/
          <year>1907</year>
          .11692 (
          <year>2019</year>
          ). URL: http://arxiv.org/abs/
          <year>1907</year>
          .11692. arXiv:
          <year>1907</year>
          .11692.
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [22]
          <string-name>
            <surname>Á</surname>
          </string-name>
          . A.
          <string-name>
            <surname>Casero</surname>
          </string-name>
          ,
          <article-title>Named entity recognition and normalization in biomedical literature: a practical case in sars-cov-2 literature, 2021</article-title>
          . URL: https://oa.upm.es/67933/.
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [23]
          <string-name>
            <surname>X. Zhang,</surname>
          </string-name>
          <article-title>raynardj/ner-disease-ncbi-bionlp-bc5cdr-</article-title>
          <string-name>
            <surname>pubmed</surname>
          </string-name>
          ,
          <year>2021</year>
          . URL: https: //huggingface.co/raynardj/ner
          <article-title>-disease-ncbi-bionlp-bc5cdr-pubmed.</article-title>
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [24]
          <string-name>
            <given-names>P.</given-names>
            <surname>Deka</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Jurek-Loughrey</surname>
          </string-name>
          ,
          <article-title>Unsupervised keyword combination query generation from online health related content for evidence-based fact checking</article-title>
          ,
          <source>in: The 23rd International Conference on Information Integration and Web Intelligence</source>
          ,
          <year>2021</year>
          , pp.
          <fpage>267</fpage>
          -
          <lpage>277</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          [25]
          <string-name>
            <given-names>M.</given-names>
            <surname>Honnibal</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Montani</surname>
          </string-name>
          , spaCy 2:
          <article-title>Natural language understanding with Bloom embeddings, convolutional neural networks and incremental parsing, 2017</article-title>
          . To appear.
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          [26]
          <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>
          , CoRR abs/
          <year>1901</year>
          .08746 (
          <year>2019</year>
          ). URL: http://arxiv.org/abs/
          <year>1901</year>
          .08746. arXiv:
          <year>1901</year>
          .08746.
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          [27]
          <string-name>
            <given-names>S. R.</given-names>
            <surname>Bowman</surname>
          </string-name>
          , G. Angeli,
          <string-name>
            <given-names>C.</given-names>
            <surname>Potts</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C. D.</given-names>
            <surname>Manning</surname>
          </string-name>
          ,
          <article-title>A large annotated corpus for learning natural language inference</article-title>
          ,
          <source>in: Proceedings of the 2015 Conference on Empirical Methods in Natural Language Processing</source>
          , Association for Computational Linguistics, Lisbon, Portugal,
          <year>2015</year>
          , pp.
          <fpage>632</fpage>
          -
          <lpage>642</lpage>
          . URL: https://aclanthology.org/D15-1075. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>D15</fpage>
          - 1075.
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          [28]
          <string-name>
            <given-names>A.</given-names>
            <surname>Williams</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Nangia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. R.</given-names>
            <surname>Bowman</surname>
          </string-name>
          ,
          <article-title>A broad-coverage challenge corpus for sentence understanding through inference</article-title>
          ,
          <source>CoRR abs/1704</source>
          .05426 (
          <year>2017</year>
          ). URL: http://arxiv.org/abs/ 1704.05426. arXiv:
          <volume>1704</volume>
          .
          <fpage>05426</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          [29]
          <string-name>
            <given-names>D.</given-names>
            <surname>Cer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Diab</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Agirre</surname>
          </string-name>
          ,
          <string-name>
            <given-names>I.</given-names>
            <surname>Lopez-Gazpio</surname>
          </string-name>
          , L. Specia, SemEval
          <article-title>-2017 task 1: Semantic textual similarity multilingual and crosslingual focused evaluation</article-title>
          ,
          <source>in: Proceedings of the 11th International Workshop on Semantic Evaluation (SemEval-2017)</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Vancouver, Canada,
          <year>2017</year>
          , pp.
          <fpage>1</fpage>
          -
          <lpage>14</lpage>
          . URL: https://aclanthology. org/S17-2001. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>S17</fpage>
          - 2001.
        </mixed-citation>
      </ref>
      <ref id="ref30">
        <mixed-citation>
          [30]
          <string-name>
            <given-names>S. A.</given-names>
            <surname>Bhaskar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Rungta</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Route</surname>
          </string-name>
          , E. Nyberg, T. Mitamura, Sieg at MEDIQA 2019:
          <article-title>Multitask neural ensemble for biomedical inference and entailment</article-title>
          ,
          <source>in: Proceedings of the 18th BioNLP Workshop</source>
          and Shared Task, Association for Computational Linguistics, Florence, Italy,
          <year>2019</year>
          , pp.
          <fpage>462</fpage>
          -
          <lpage>470</lpage>
          . URL: https://aclanthology.org/W19-5049. doi:
          <volume>10</volume>
          .18653/ v1/
          <fpage>W19</fpage>
          - 5049.
        </mixed-citation>
      </ref>
      <ref id="ref31">
        <mixed-citation>
          [31]
          <string-name>
            <given-names>P.</given-names>
            <surname>Sharma</surname>
          </string-name>
          , S. Roychowdhury, IIT-KGP at MEDIQA 2019:
          <article-title>Recognizing question entailment using sci-BERT stacked with a gradient boosting classifier</article-title>
          ,
          <source>in: Proceedings of the 18th BioNLP Workshop</source>
          and Shared Task, Association for Computational Linguistics, Florence, Italy,
          <year>2019</year>
          , pp.
          <fpage>471</fpage>
          -
          <lpage>477</lpage>
          . URL: https://aclanthology.org/W19-5050. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>W19</fpage>
          - 5050.
        </mixed-citation>
      </ref>
      <ref id="ref32">
        <mixed-citation>
          [32]
          <string-name>
            <given-names>A.</given-names>
            <surname>Ben Abacha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Shivade</surname>
          </string-name>
          ,
          <string-name>
            <surname>D.</surname>
          </string-name>
          <article-title>Demner-Fushman, Overview of the MEDIQA 2019 shared task on textual inference, question entailment and question answering</article-title>
          ,
          <source>in: Proceedings of the 18th BioNLP Workshop</source>
          and Shared Task, Association for Computational Linguistics, Florence, Italy,
          <year>2019</year>
          , pp.
          <fpage>370</fpage>
          -
          <lpage>379</lpage>
          . URL: https://aclanthology.org/W19-5039. doi:
          <volume>10</volume>
          .18653/ v1/
          <fpage>W19</fpage>
          - 5039.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>