<!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>KU-DMIS at BioASQ 9: Data-centric and model-centric approaches for biomedical question answering</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Wonjin Yoon</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Jaehyo Yoo</string-name>
          <email>jaehyoyoo@korea.ac.kr</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Sumin Seo</string-name>
          <email>suminseo@korea.ac.kr</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Mujeen Sung</string-name>
          <email>mujeensung@korea.ac.kr</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Minbyul Jeong</string-name>
          <email>minbyuljeong@korea.ac.kr</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Gangwoo Kim</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Jaewoo Kang</string-name>
          <email>kangj@korea.ac.kr</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Korea University</institution>
          ,
          <addr-line>Seoul, 02841</addr-line>
          ,
          <country country="KR">South Korea</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>In this paper, we present approaches for our participation in the 9th BioASQ challenge (Task b - Phase B). Our systems are based on the transformer models with model-centric and data-centric approaches. For factoid-type questions we modified the dataset to increase label consistency, and for list-type questions we apply the sequence tagging model which is a more natural model design for the multi-label task. Our experimental results suggest two main points: better model design can be achieved by reflecting data characteristics such as the number of labels for a data point; and scarce resources such as BioQA datasets can greatly benefit from a data-centric approach with relatively little efort. Our submissions achieve competitive results with top or near top performance in the challenge.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>What family do mDia proteins belong in? [o‘fmthDeiafoprrmotieninfasmarileym’] embers
[s‘yTthheesoizreexdiginentihcepheypptiodtehsaalarmeus.’] [‘the hypothalamus’]
[‘To protect c-myc CRD [‘To protect c-myc CRD
from endonucleolytic attack.’] from endonucleolytic attack’]
[‘A keystone periodontal pathogen. ’] [‘A keystone periodontal pathogen’]
[‘SUMO-conjugating enzyme’] ‘[S‘SUUMMOOc-oconnjujuggaatitninggeennzyzymme’e]’,
a word or a short phrase, whereas, for an ideal answer, the output should be one or multiple
sentences. Participants can choose to answer both formats or partially.</p>
      <p>
        In this paper, we provide approaches of our participation in QA tasks of the challenge (Task
9b - Phase B) [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. Our submissions are in both exact and ideal answer formats. Our approaches
vary from the type of questions and answers. For exact answers, we utilize both model-centric
approach (list-type question) and data-centric approach (factoid-type question) to improve our
previous systems [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] for BioASQ 8b. For ideal answers, we apply abstractive summarization
method using large-scale language model BART [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ].
      </p>
    </sec>
    <sec id="sec-2">
      <title>2. Methods</title>
      <p>
        In this section, we describe details of our approaches. In the Section 2.1, 2.2, and 2.3, we describe
our approaches for the exact answers. In the Section 2.4, we describe our unified model for ideal
answers, which can answer all four types of questions: 3 aforementioned types and
summarytype questions. For all types, we mainly fine-tune BioBERT [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ], which has been proven to be
efective on various NLP tasks in the biomedical or clinical domain [
        <xref ref-type="bibr" rid="ref10 ref11 ref6 ref7 ref8 ref9">6, 7, 8, 9, 10, 11</xref>
        ].
      </p>
      <sec id="sec-2-1">
        <title>2.1. Data-centric approach; Factoid Questions</title>
        <p>
          Recently, pre-trained models [
          <xref ref-type="bibr" rid="ref12 ref13">12, 13</xref>
          ] have achieved dramatic improvements of downstream
tasks in both general and biomedical domain by harnessing large-scale models with
transferlearning methods [
          <xref ref-type="bibr" rid="ref10 ref13 ref14 ref15">10, 13, 14, 15</xref>
          ]. BioQA models have also benefited from transfer-learning
[
          <xref ref-type="bibr" rid="ref11 ref16 ref3">3, 11, 16</xref>
          ]. However, utilizing the maximum of scarce resources is susceptible to the rare error
of the training samples, as opposed to relatively rich datasets where a few erroneous samples
can be ignored by the model. Moreover, Jeong et al. [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ] measured the proportion of questions,
which is unanswerable if transformed to the extractive QA setting, in the test dataset of BioASQ
8b. Hence, the models trying to solve the task under the extractive QA setting are sufering
from unexpected noise.
        </p>
        <p>
          In this section, we introduce our data-centric approach for factoid-type questions of the
BioASQ 9b challenge. Data-centric approach is a concept of improving the quality of training
data to make it better fit into the model. The term data-centric forms a binary opposition
term pair with model-centric approach which focuses more into improving model to achieve
better performance. The concept is introduced by Ng [
          <xref ref-type="bibr" rid="ref17">17</xref>
          ] at a seminar, where he argued the
benefit of data-centric approaches and showed that, for some datasets, larger improvements in
performance can be made with data-centric approach than model-centric approach.
        </p>
        <p>Our main aim of data-centric approach is to increase labeling consistency and exclude or
clean noisy data points. Table 1 and 2 shows the data cleaning operations and the examples
of them. The answers from the BioASQ 9b training samples are mostly in the format of noun
phrases. However, some data points have answers in sentences format. We manually modify
such sentence answers to a noun phrase format. Additional normalization processes are made
to correct misspelled word and to remove punctuation marks. Word correction and minor
normalization processes are made to the questions. We do not modify grammatical structure of
the questions and we count both British and American spelling as correct.</p>
        <p>152 changes are made to the 9b training dataset including 22 question corrections and 24
dropped data points. For the evaluation of our models, we do not apply normalization steps.
Data cleaning resources are available at https://github.com/dmis-lab/bioasq9b-dmis .</p>
      </sec>
      <sec id="sec-2-2">
        <title>2.2. Model-centric approach; List Questions</title>
        <p>Extractive question answering is a task of finding answer spans of a question in the given
passage. List-type questions are questions with multiple answers whereas factoid questions are
questions that can be answered with one phrase. For list-type question, the number of answer
for a given question is uninformed (i.e. not available as a metadata). Hence, deciding it remains
a challenging and key operation to participating systems.</p>
        <p>
          Previous works utilize factoid models with an additional steps to decide the number of
answers for the questions. Factoid models are designed to predict a single answer span, and
thus, they can not be trained on multi-label setup directly. In other words, for a training data
point of list-type question, one answer span is trained for a training step and the other answers
are acting as a noise since they are considered as non-answer tokens. We call this setting as
"start-end span prediction", which is commonly used in biomedical extractive QA [
          <xref ref-type="bibr" rid="ref11 ref16 ref3">3, 11, 16</xref>
          ].
        </p>
        <p>
          Following the approach of Yoon et al. [
          <xref ref-type="bibr" rid="ref18">18</xref>
          ], our systems for list-type questions are based
on the sequence tagging approach. Specifically, a question and its corresponding passage are
concatenated to construct a sequence, which is a training data point. Our systems adopt either
BIO or IO scheme to annotate answer spans. For each tokens in the passage is tagged as B, I, or
O tag which stands for Beginning, Inside, Outside, respectively.
        </p>
        <p>Sequence tagging approach has two significant benefits over the previous models. First, the</p>
        <p>BART</p>
        <p>Sentence 1
Sentence 2</p>
        <p>…
Sentence n</p>
        <p>Candidate selection</p>
        <p>Score
Function</p>
        <p>
          Syntax
Check
model can be trained on multiple answers simultaneously which is more natural model design
for the multi-answer task. As all available training labels (i.e. answers) are used for the training,
rather than acting as training noise, the model learn the maximum of the dataset. Second, the
approach is an end-to-end model that finds all the answers in the passage, whereas the previous
models require complex post-processing steps to decide the number of answers. Models for
the previous BioASQ challenges [
          <xref ref-type="bibr" rid="ref11 ref3">3, 11</xref>
          ] decided the number of answers by threshold-based
answer decision process, where the threshold value is a hyperparameter that needs to be tuned.
Additionally, rule-based answer number detection are adopted under the assumption that if
the numeric value exists in the question, the value is highly likely to be the required number
of answers (ex. Question: List 3 apoE mimetics). In contrast, our approach does not require
additional hyperparameter searching nor have to rely on the weak assumption.
        </p>
      </sec>
      <sec id="sec-2-3">
        <title>2.3. Yes/No Questions</title>
        <p>
          Following the systems of our participation for BioASQ 8b [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ], we use BioBERT [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ] with an
additional pre-training step on MNLI dataset [
          <xref ref-type="bibr" rid="ref19">19</xref>
          ]. For BioASQ 9b task, our systems are based on
BioBERTLARGE, which has more model parameters than BioBERTBASE model from the previous
participation. For yes/no-type questions, we adjust the ratio of yes questions and no questions
in the training set to 1:1. The original training dataset is heavily skewed towards question with
yes answers. As shown in Table 3, original 8b training set consists of 10,284 yes and 1,691 no
question and passage pair samples. After our pre-processing steps, approximately 85.8% of
answers for the yes/no-type questions are yes. Our systems are trained on the down-sampled
training dataset to alleviate the class imbalance problem.
        </p>
      </sec>
      <sec id="sec-2-4">
        <title>2.4. Ideal answers</title>
        <p>Figure 1 shows an overview of our approach for the ideal answers. Our model utilize the
predicted exact answer as a input for generating a ideal answer. In detail, we generate all the
combinations of triples of an exact answer () and all the passages (1, . . . , ) available for
a question (). Then using the triples, we generate a candidate sentences (1, . . . , ) for a
question. We then select one ideal answer from the candidates using candidate selection process.
Candidate Selection Our model is designed to generate one answer candidate for a input
sequences. In the original dataset, multiple articles/snippets are provided as corresponding
passages for a question. Hence multiple answer candidates are generated for a question. We
need a candidate selection process to submit one answer, and the quality of this process can
largely impact the performance of the model. Our candidate selection process is composed of a
scoring function and a syntax checker.</p>
        <p>
          Score Function We have tried to score the generated ideal answer candidates (1, . . . , )
by checking the presence of (candidate) exact answer(s). In order to check the presence, we
employ BERN [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ], a BioBERT based named entity recognition (NER) and linking system, to
detect all the entities in the ideal answer candidates. For each candidate sentences for factoid
and list questions, we calculate the F1-score using the tentative exact answer(s) and recognize
entities from the candidate sentences. If one of the tentative answer(s) exists in the generated
sentences, we add it to the set of recognized entities even if it is not detected by BERN.
Syntax Checker We use language-check python package 1, an automated syntax checker,
to correct or filter out grammatically wrong candidate sentences. From the list of ideal answer
candidates, we select one with the highest score and check it with the syntax checker. If
grammar errors are detected, we try to correct it with the checker. However, if the checker
ifnds impossible to fix it, we then skip the candidate and move to the second highest candidate.
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>3. Results and Discussion</title>
      <p>1https://github.com/myint/language-check
mance shows 3.48 score improvement on the mean reciprocal rank (MRR) score and 5.96 point
improvement on the strict accuracy (SAcc) metric.</p>
      <p>
        Table 5 shows the experimental results on the list dataset for sequence tagging model and
the baseline model, namely Start-End model[
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] (for both full abstract and snippet datasets).
Our model outperforms the baseline model, which we used for the last year, with large gap.
Our model with IO tagging even outperforms the start-end model with snippet dataset as
input without using complex post-processing and rule-based processing steps. Please note
that snippets are more concentrated sources of information than the full abstract documents
since the answer should exist in a snippet or a full abstract but a snippet is a sentence-length
document whereas a full abstract is a paragraph-length document. In the challenge, we also
submitted ensemble system, which consists of sequence tagging model and start-end model.
However, ensemble system did not show significant improvement over single models.
      </p>
      <p>For yes/no-type questions, we introduce the down-sampling method which we balance the
number of yes and no questions from the training set by sampling 1,691 yes questions out of
10284 yes questions (i.e. sampled 16% of yes questions). We have empirically shown that a
down-sampled dataset alleviates the underlying class imbalance issue of yes/no-type questions.
The results of yes/no model trained on down-sampled and original training data are described
in Table 6. For models trained on down-sampled data, macro F1 score is improved from 0.80 to
0.93 (0.13 improvement). We have found that the down sampling method achieves better model
performance for imbalanced yes/no-type questions. We conduct the experiments following the
same hyperparameter settings, including learning rate and the number of learning steps.</p>
      <p>The oficial evaluation metric for the ideal models is human evaluation score, which is scored
by the human experts on the following four criteria: recall, precision, repetition, and readability.
Since the human evaluation score is not yet released at the moment2, we provide the qualitative
2The oficial result (human evaluation) will be on : http://participants-area.bioasq.org/results/9b/phaseB/
analysis of the model on Table 7. As we denoted in Section 2.4, tentative exact answers are
used as one of the inputs to generate ideal answer candidates and to select best candidates for
the questions. By utilizing the exact answer as one of the input to the ideal answer generation
model, the model is imposed to consider the given exact answer in the sentence generation step
and potentially include the exact answer in the generated sentence. The examples in the Table 7
show that the generated ideal answer sentences successfully include the given exact answers
(potential exact answers). We did not exclude the snippets that do not contain the exact answer
since our model is expected to include the given exact answers in the generated sentences even
if they dose not exist in the passage.</p>
      <p>Finally, Table 8 shows the result of our participation and the best performing system in the
challenge. If our system scored the highest performance for a given batch, we marked it using
bold font.</p>
    </sec>
    <sec id="sec-4">
      <title>4. Conclusion</title>
      <p>In this paper, we report our participation with data-centric and model-centric approaches, and
the results of our systems for the BioASQ 9b task. We introduce a data-centric approach for
factoid-type questions, in which we train the model using the dataset with increased label
consistency, and improves the performance of our model. For list-type questions, we apply
the sequence tagging model and achieve better performance while at the same time lower the
cost of pre- and post-processing. Furthermore, for yes/no-type questions in the BioASQ 9b,
our models have shown the best performance by utilizing down-sampling. We can conclude
that it is beneficial for BioQA models to use data-centric and/or model-centric approaches in
consideration of the features of questions and answers.</p>
    </sec>
    <sec id="sec-5">
      <title>Acknowledgments</title>
      <p>We express gratitude towards Dr. Jihye Kim and Dr. Sungjoon Park from Korea University
for their invaluable insight into our systems’ output. This research is supported by National
Research Foundation of Korea (NRF-2020R1A2C3010638) and a grant of the the Korea Health
Technology R&amp;D Project through the Korea Health Industry Development Institute (KHIDI),
funded by the Ministry of Health &amp; Welfare, Republic of Korea (grant number: HR20C0021)</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>G.</given-names>
            <surname>Tsatsaronis</surname>
          </string-name>
          , G. Balikas,
          <string-name>
            <given-names>P.</given-names>
            <surname>Malakasiotis</surname>
          </string-name>
          , I. Partalas,
          <string-name>
            <given-names>M.</given-names>
            <surname>Zschunke</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. R.</given-names>
            <surname>Alvers</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Weissenborn</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Krithara</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Petridis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Polychronopoulos</surname>
          </string-name>
          , et al.,
          <article-title>An overview of the bioasq large-scale biomedical semantic indexing and question answering competition</article-title>
          ,
          <source>BMC bioinformatics 16</source>
          (
          <year>2015</year>
          )
          <fpage>1</fpage>
          -
          <lpage>28</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>A.</given-names>
            <surname>Krithara</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Nentidis</surname>
          </string-name>
          , G. Paliouras,
          <string-name>
            <given-names>M.</given-names>
            <surname>Krallinger</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Miranda</surname>
          </string-name>
          , Bioasq at clef2021:
          <article-title>Large-scale biomedical semantic indexing and question answering</article-title>
          .,
          <source>in: ECIR (2)</source>
          ,
          <year>2021</year>
          , pp.
          <fpage>624</fpage>
          -
          <lpage>630</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>M.</given-names>
            <surname>Jeong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Sung</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Kim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Kim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Yoon</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Yoo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Kang</surname>
          </string-name>
          ,
          <article-title>Transferability of natural language inference to biomedical question answering</article-title>
          , arXiv preprint arXiv:
          <year>2007</year>
          .
          <volume>00217</volume>
          (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>M.</given-names>
            <surname>Lewis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Goyal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Ghazvininejad</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Mohamed</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Levy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Stoyanov</surname>
          </string-name>
          , L. Zettlemoyer, Bart:
          <article-title>Denoising sequence-to-sequence pre-training for natural language generation, translation</article-title>
          , and comprehension,
          <year>2019</year>
          . arXiv:
          <year>1910</year>
          .13461.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <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="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>E.</given-names>
            <surname>Alsentzer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Murphy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Boag</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.-H.</given-names>
            <surname>Weng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Jindi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Naumann</surname>
          </string-name>
          ,
          <string-name>
            <surname>M.</surname>
          </string-name>
          <article-title>McDermott, Publicly available clinical BERT embeddings</article-title>
          ,
          <source>in: Proceedings of the 2nd Clinical Natural Language Processing Workshop</source>
          , Association for Computational Linguistics, Minneapolis, Minnesota, USA,
          <year>2019</year>
          , pp.
          <fpage>72</fpage>
          -
          <lpage>78</lpage>
          . URL: https://www.aclweb.org/anthology/W19-1909. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>W19</fpage>
          -1909.
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>I.</given-names>
            <surname>Beltagy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Cohan</surname>
          </string-name>
          ,
          <article-title>Scibert: A pretrained language model for scientific text</article-title>
          ,
          <year>2019</year>
          . arXiv:
          <year>1903</year>
          .10676.
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>Q.</given-names>
            <surname>Jin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Dhingra</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W. W.</given-names>
            <surname>Cohen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Lu</surname>
          </string-name>
          ,
          <article-title>Probing biomedical embeddings from language models</article-title>
          ,
          <year>2019</year>
          . arXiv:
          <year>1904</year>
          .02181.
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>D.</given-names>
            <surname>Kim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>So</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Jeon</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Jeong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Choi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Yoon</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Sung</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Kang</surname>
          </string-name>
          ,
          <article-title>A neural named entity recognition and multi-type normalization tool for biomedical text mining</article-title>
          ,
          <source>IEEE Access 7</source>
          (
          <year>2019</year>
          )
          <fpage>73729</fpage>
          -
          <lpage>73740</lpage>
          . doi:
          <volume>10</volume>
          .1109/ACCESS.
          <year>2019</year>
          .
          <volume>2920708</volume>
          ,
          <string-name>
            <surname>funding</surname>
            <given-names>Information</given-names>
          </string-name>
          :
          <article-title>This work was supported in part by the National Research Foundation of Korea under Grant NRF-2017R1A2A1A17069645 and Grant NRF-2016M3A9A7916996, and in part by the National IT Industry Promotion Agency, Development Project of the Precision Medicine Hospital Information System (P-HIS)</article-title>
          ,
          <source>under Grant C1202-18-1001</source>
          . Publisher Copyright: ©
          <year>2013</year>
          IEEE.
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <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>
          ,
          <year>2019</year>
          . arXiv:
          <year>1906</year>
          .05474.
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>W.</given-names>
            <surname>Yoon</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Kim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Jeong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Kang</surname>
          </string-name>
          ,
          <article-title>Pre-trained language model for biomedical question answering</article-title>
          ,
          <year>2019</year>
          . arXiv:
          <year>1909</year>
          .08229.
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>M. E.</given-names>
            <surname>Peters</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Neumann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Iyyer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Gardner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Clark</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Zettlemoyer</surname>
          </string-name>
          , Deep contesxtualized word representations,
          <year>2018</year>
          . arXiv:
          <year>1802</year>
          .05365.
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>J.</given-names>
            <surname>Devlin</surname>
          </string-name>
          , M.-
          <string-name>
            <given-names>W.</given-names>
            <surname>Chang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Toutanova</surname>
          </string-name>
          , Bert:
          <article-title>Pre-training of deep bidirectional transformers for language understanding</article-title>
          ,
          <year>2019</year>
          . arXiv:
          <year>1810</year>
          .04805.
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>N.</given-names>
            <surname>Kim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Patel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Poliak</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Xia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>McCoy</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Tenney</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Ross</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Linzen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B. Van</given-names>
            <surname>Durme</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. R.</given-names>
            <surname>Bowman</surname>
          </string-name>
          , E. Pavlick,
          <article-title>Probing what diferent NLP tasks teach machines about function word comprehension</article-title>
          ,
          <source>in: Proceedings of the Eighth Joint Conference on Lexical and Computational Semantics (*SEM</source>
          <year>2019</year>
          ),
          <article-title>Association for Computational Linguistics</article-title>
          , Minneapolis, Minnesota,
          <year>2019</year>
          , pp.
          <fpage>235</fpage>
          -
          <lpage>249</lpage>
          . URL: https://www.aclweb.org/ anthology/S19-1026. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>S19</fpage>
          -1026.
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>J.</given-names>
            <surname>Phang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Févry</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. R.</given-names>
            <surname>Bowman</surname>
          </string-name>
          ,
          <article-title>Sentence encoders on stilts: Supplementary training on intermediate labeled-data tasks</article-title>
          ,
          <year>2019</year>
          . arXiv:
          <year>1811</year>
          .01088.
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>G.</given-names>
            <surname>Wiese</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Weissenborn</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Neves</surname>
          </string-name>
          ,
          <article-title>Neural domain adaptation for biomedical question answering</article-title>
          ,
          <source>in: Proceedings of the 21st Conference on Computational Natural Language Learning (CoNLL</source>
          <year>2017</year>
          ),
          <article-title>Association for Computational Linguistics</article-title>
          , Vancouver, Canada,
          <year>2017</year>
          , pp.
          <fpage>281</fpage>
          -
          <lpage>289</lpage>
          . URL: https://www.aclweb.org/anthology/K17-1029. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>K17</fpage>
          -1029.
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>A. Y.</given-names>
            <surname>Ng</surname>
          </string-name>
          ,
          <article-title>A chat with andrew on mlops: From model-centric to data-centric ai</article-title>
          ,
          <year>2021</year>
          . URL: https://www.youtube.com/06-AZXmwHjo.
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <given-names>W.</given-names>
            <surname>Yoon</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Jackson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Kang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Lagerberg</surname>
          </string-name>
          ,
          <article-title>Sequence tagging for biomedical extractive question answering</article-title>
          ,
          <source>arXiv preprint arXiv:2104.07535</source>
          (
          <year>2021</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <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.</given-names>
            <surname>Bowman</surname>
          </string-name>
          ,
          <article-title>A broad-coverage challenge corpus for sentence understanding through inference</article-title>
          ,
          <source>in: Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies</source>
          , Volume
          <volume>1</volume>
          (
          <string-name>
            <surname>Long</surname>
            <given-names>Papers)</given-names>
          </string-name>
          ,
          <source>Association for Computational Linguistics</source>
          , New Orleans, Louisiana,
          <year>2018</year>
          , pp.
          <fpage>1112</fpage>
          -
          <lpage>1122</lpage>
          . URL: https://www.aclweb.org/anthology/N18-1101. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>N18</fpage>
          -1101.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>