<!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>BiodivBERT: a Pre-Trained Language Model for the Biodiversity Domain</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="editor">
          <string-name>Biodiversity, Language Model, BERT, Pre-training, Fine-tuning</string-name>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          ,
          <addr-line>Felicitas Löffler</addr-line>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Friedrich Schiller University Jena</institution>
          ,
          <addr-line>Jena</addr-line>
          ,
          <country country="DE">Germany</country>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>Michael Stifel Center Jena</institution>
          ,
          <country country="DE">Germany</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2023</year>
      </pub-date>
      <abstract>
        <p>Information Extraction in the Life Sciences is getting increasing attention due to the constantly growing amount of data and text. The advancements of deep learning models further accelerate this development. However, applying these models to domain-specific data is crucial as applied domains often require different entity type extractions than general ones. This paper introduces BiodivBERT, the first pretrained language model for the biodiversity domain. We constructed two pre-training corpora (abstracts and abstracts + full text) based on a keyword search strategy from two leading publishers in the Life Sciences. In addition, we fine-tuned BiodivBERT on two downstream tasks, i.e., Named Entity Recognition (NER) and Relation Extraction (RE), using various state-of-the-art benchmarks. The results show that BiodivBERT outperforms the state-of-the-art approaches. Moreover, we discuss a potential application of BiodivBERT for ontology auto-population. We publicly release data and code for both pre-training and fine-tuning.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>1,2,3</p>
    </sec>
    <sec id="sec-2">
      <title>1. Introduction</title>
      <p>
        Motivated by the predicted impending loss of biodiversity and the consequences of this loss for
humanity [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ], research in the biodiversity domain has recently witnessed accelerated growth.
For instance, the Biodiversity Heritage Library (BHL)1 currently holds over 55 million digitized
pages of legacy biology text from the 15ℎ − 21 centuries, representing a massive amount of
textual content [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. Moreover, Google Scholar returns more than 85,000 hits for a search using
the term “biodiversity” from 2021 till the time of writing, November 2022. Thus, text mining
tools are an open demand in the field to leverage this untapped wealth. Recent progress in
the development of deep learning models for Natural Language Processing (NLP) promises to
answer this demand. However, directly applying such NLP techniques to biodiversity texts is
not promising. Modern word representation models such as Word2Vec [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ], GloVe [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ], ELMo [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ],
Sciences
∗Corresponding author.
CEUR
Workshop
Proceedings
htp:/ceur-ws.org
ISN1613-073
      </p>
      <p>
        CEUR Workshop Proceedings (CEUR-WS.org)
and BERT[
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] are trained and tested on general domain texts (e.g., Wikipedia). However,
domainspecific, texts contain many instances of domain-specific entity types. E.g., Helianthus (genus
of sunflower species), calcareous grassland, or growth rate. Thus, it is difficult to estimate the
performance of general-purpose models on domain-specific datasets. Approaches to improve the
performance of cutting-edge approaches like BERT on domain-specific benchmarks have first
been developed for the (bio-)medical domain with BioBERT [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] and clinicalBERT [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]. BioBERT is
initialized with BERT weights and pre-trained on biomedical corpora that are based on PubMed2
and PubMed Central (PMC)3. It showed a significant improvement on three downstream tasks,
namely Named Entity Recognition (NER), Relation Extraction (RE), and Question Answering
(QA). To the best of our knowledge, there is no language model for the biodiversity domain that
supports the extraction of named entities and relations from textual data.
      </p>
      <p>
        The contributions of our paper are as follows: i) BiodivBERT is the first biodiversity-specific
BERT-based model pre-trained on biodiversity corpora. ii) We show that pre-training BERT on
biodiversity corpora improves its performance on two downstream tasks, NER and RE. iii) We
discuss potential applications for BiodivBERT, e.g., ontology population. v) We make our
pretraining corpora [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ], pre-processed datasets [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ], the pre-trained weights [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ] of BiodivBERT,
and the source code for pre-training and fine-tuning publicly available4.
      </p>
      <p>The rest of this paper is organized as follows: We give an overview of our approach in Section 2.
We explain the pre-training and fine-tuning tasks in Section 3 and Section 4 respectively. We
show our results in Section 5. We demonstrate a potential application of the current work in
Section 6. We conclude in Section 7.</p>
    </sec>
    <sec id="sec-3">
      <title>2. Approach</title>
      <p>
        In this paper, we introduce BiodivBERT, a pre-trained language representation model for the
biodiversity domain. The overall process of pre-training and fine-tuning BiodivBERT is shown in
Figure 1. First, we initialize BiodivBERT with weights from BERT [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ], which was pre-trained on
general domain corpora (English Wikipedia and BooksCorpus). Then, BiodivBERT is pre-trained
on our collected corpora from the biodiversity domain. The first corpus is based on abstracts
(+Abs), while the other contains both abstracts and full text (+Abs+Full). To demonstrate the
effectiveness of BiodivBERT in biodiversity text mining, we have fine-tuned and evaluated it on
two downstream tasks, NER and RE, using various task-specific datasets.
      </p>
    </sec>
    <sec id="sec-4">
      <title>3. Pre-training BiodivBERT</title>
      <p>In this section, we explain our pre-training data sources, selection strategy, and data statistics.
In addition, we discuss the pre-training task for BiodivBERT.</p>
      <sec id="sec-4-1">
        <title>3.1. Pre-training Data</title>
        <p>In this section, we discuss the construction of our two pre-training corpora that are based on
Abstracts (+Abs), and Full text (+Abs+Full). Thus, we explain our used keywords search strategy,
workflow, and the resultant corpora statistics.</p>
        <sec id="sec-4-1-1">
          <title>2https://pubmed.ncbi.nlm.nih.gov/ 3https://www.ncbi.nlm.nih.gov/pmc/ 4https://github.com/fusion-jena/BiodivBERT</title>
          <p>Pre-training of BiodivBERT
Pre-training Corpora BiodivBERT Pre-training</p>
          <p>Fine-tuning of BiodivBERT</p>
          <p>Task-specific Datasets BiodivBERT Fine-tuning
Weights initialization
T1 T2 . . TN
Tm Tm Tm
Tm Tm Tm
E1 E2 … EN</p>
          <p>BERT</p>
          <p>T1 T2 ... TN
Tm Tm
Tm Tm</p>
          <p>Tm</p>
          <p>Tm
E1 E2 … EN
Pre-trained BiodivBERT
with biodiversity domain
corpora</p>
          <p>Named Entity
Recognition</p>
          <p>(NER)
Species-800, LINNAUS,
COPIOUS, QEMP, BiodivNER
Relation Extraction</p>
          <p>(RE)
BiodivRE, GAD, EU_ADR,</p>
          <p>BioRelEx
richness B-QUA
of O
fungi B-ORG
in O
T1 ahabTit2at BO.-.E.NV TN
Tm Tm Tm</p>
          <p>
            Corpora Construction Pipeline: To show the effect of the pre-training data on the model
performance through the downstream tasks, we created two pre-training corpora. One is
based on abstracts (+Abs) only, while the other contains abstracts and full text of publications
(+Abs+Full). Under the access rights provided by the selected publishers, we used abstracts
and full texts of open-access papers and abstracts only for other publications. To construct the
+Abs corpus, we used the pre-selected keywords and year range as input for both Elsevier and
Springer’s provided full-text search APIs. For each of them, we retrieved the corresponding
DOIs for each keyword in the given year’s range. We then applied a deduplication method to
the result set. We applied the same procedure for the second corpus, which is based on the
full texts (+Abs+Full). Elsevier provided a straightforward API to obtain the parsed full text
for a given article. However, for Springer’s full text, we downloaded the corresponding PDF
file for each DOI, converted it to an XML format, and then extracted the text. We converted
the downloaded PDFs to XML files using the GROBID service, and client [
            <xref ref-type="bibr" rid="ref12">12</xref>
            ]. We cleaned and
merged the final text from both data sources. We applied both shallow and deep cleaning steps
for the collected data. For instance, we filtered the sentences to include unique ones. In addition,
we used regular expressions to remove URLs and DOIs.
          </p>
        </sec>
        <sec id="sec-4-1-2">
          <title>5https://dev.elsevier.com/ 6https://dev.springernature.com/ 7https://github.com/fusion-jena/BiodivBERT/blob/main/keywords_search 8The starting year of this project.</title>
          <p>rsse
h
li
b
u
P
Elsevier
Full Text
Downloaded
Unique
Available</p>
          <p>Corpora Statistics: Table 1 gives an overview of our final corpora statistics. +Abs and
+Abs+Full are around 1GB and 4GB in size, respectively. Our corpora include around 1M
abstracts with 92K full publications. We faced data loss as shown in Figure 2 due to several
reasons: 1) not found (404) errors for some articles because of either technical issues on the
provider side or invalid DOIs. 2) Elsevier allows crawling only 6000 articles per keyword through
its API. 3) GROBID failed to convert some PDF files from Springer. So, the shown numbers
indicate the best we can use from both publishers under such circumstances.
5M
25M
134M
548M</p>
          <p>Size
876 MB
3.81 GB</p>
        </sec>
      </sec>
      <sec id="sec-4-2">
        <title>3.2. Pre-training Task</title>
        <p>
          We pre-trained BiodivBERT on our domain-specific corpora (+Abs) and (+Abs+Full). We
initialized BiodivBERT with the B E R T _ b a s e _ c a s e d weights for computation efficiency and to leverage
the general domain learned weights from the Wiki and books corpora by the original model.
For tokenization, we used the same BERT WordPiece [
          <xref ref-type="bibr" rid="ref13">13</xref>
          ] tokenizer, which overcomes the
out-of-vocab (OOV) issue. Similar to BioBERT [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ], we used the cased vocabulary in our setting
as it has higher performance on the downstream tasks, and we used the original vocabulary of
B E R T _ b a s e _ c a s e d for the same reason and to be compatible with both BERT and BioBERT. We
compare BiodivBERT to the SOTA BERT-based models. In addition, we tested different
combinations of pre-training corpora. Thus, we compare such settings in Table 2. We pre-trained
BiodivBERT+Abs, and BiodivBERT+Abs+Full using transformers by Hugging Face [
          <xref ref-type="bibr" rid="ref14">14</xref>
          ] library
on a single V100 GPU (16 GB) for 3 and 5 days respectively. We used 512 for the maximum
sequence length and 15% of the masked language model probability for hyperparameters. In
addition, we used Adam’s optimizer with 1e-3 learning weight and default betas. Moreover,
we set the batch size to 16 and enabled the gradient accumulation with four steps for faster
training.
        </p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>4. Fine-tuning BiodivBERT</title>
      <p>With minimal architectural modification, BiodivBERT can be applied to various downstream
text mining tasks. In this work, we fine-tuned it on both NER and RE using P100 (16 GB) by
Colab Pro9 using various state-of-the-art datasets.</p>
      <p>
        Named Entity Recognition is the task of identifying the domain-specific proper nouns
inside a given text. We leveraged the original BERT structure for NER such that it uses a
single output layer based on the representations from its last layer to compute only token-level
probabilities. We used entity-level precision, recall, and F1 score as the evaluation metrics
of NER. We selected various SOTA datasets to test the performance of BiodivBERT on NER.
COPIOUS [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] is based on BHL documents and has six entity types, a.k.a. tags, including, e.g.,
habitat and taxon names. QEMP [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ] is created from datasets metadata files and contains four
entity types (tags), e.g., quality and material. BiodivNER [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ] (dataset [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ]) is constructed from
metadata files and abstracts from PubMed and has five tags, e.g., organism and phenomena.
Species800 [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ] and Linnaeus [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ] are designed for species names that are normalised to NCBI
Taxonomy database10. We pre-processed all of them to follow the BIO11 format for token
classification.
      </p>
      <p>Table 3
Overview of the selected NER datasets.</p>
      <p>Dataset
BiodivNER</p>
      <p>QEMP
COPIOUS
Species800
Linnaeus</p>
      <p>Tags
#Docs
#Statements</p>
      <p>
        #Annotations
Relation Extraction is the task of classifying relations among named entities in a corpus.
We utilized the sentence classifier of the original version of BERT, which uses a [CLS] token
for the classification of relations. Relations in such a way use a single output layer based on a
[CLS] token representation from BERT. To the best of our knowledge, BiodivRE [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ] is the only
available RE corpus for the biodiversity domain, so we included it in our fine-tuning setting.
In addition, we included the BioRelEx [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ], EU-ADR [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ], and GAD [
        <xref ref-type="bibr" rid="ref22">22</xref>
        ] corpora from the
biomedical domain. BiodivRE contains relations among the five entity types of BiodivNER, like
occur_in and influence in a multi-class and a binary format. BioRelEx classifies the bindings
9https://colab.research.google.com/?utm_source=scs-index
10https://www.ncbi.nlm.nih.gov/taxonomy
11https://natural-language-understanding.fandom.com/wiki/Named_entity_recognition#BIO
between genes and diseases into three categories: exists (1), not exists (-1), and unsure (0).
EU-ADR and GAD include relations between genes and diseases. In this work, we used the
binary format that BiodivRE provides. For BioRelEx, we constructed a binary relation corpus
by excluding the unsure relations. Moreover, similar to BioBERT, we anonymized the target
named entities in a sentence using their tags, e.g., @COMPLEXPROTEIN$ and @GENE$. For
EU-ADR and GAD, we used the provided pre-processed version by BioBERT’s team since the
original data are unavailable. Table 4 shows the selected RE datasets’ statistics.
      </p>
    </sec>
    <sec id="sec-6">
      <title>5. Results &amp; Discussion</title>
      <p>To gain a first impression of the performance of our approach, we ran a mask-filling task on a
typical biodiversity topic on BERT, BioBERT, and BiodivBERT using the following test case:
“Diversification and [MASK] in brood pollination mutualisms.”. Table 5 shows that BiodivBERT has
produced the most realistic results compared to the other two models. For example, BiodivBERT
can generate both “diversity” and “evolution”. Such results demonstrate the effectiveness of the
pre-training data.</p>
      <p>Table 6 and Table 7 shows the scores of fine-tuning the BiodivBERT, BERT, and BioBERT
models on the two downstream tasks NER, and RE respectively. In addition, we developed
a single layer of the Bidirectional Long Short Term Memory (BiLSTM) with 10% dropout
as a baseline approach. We micro-averaged the results per dataset to generate the scores
of all systems. We fine-tuned these models on a single P100 GPU provided by Colab Pro.
First, we found that BioBERTv1.1 obtained higher scores than BERTBASE on the downstream
tasks, Second, BiodivBERT+Abs+Full and BiodivBERT+Abs gained the best results among all
the others by achieving either first or second place on the given datasets. In detail, for NER,
BiodivBERT+Abs+Full exceeds BioBERTv1.1 for all datasets except QEMP ,where BiodivBERT+Abs
exceeds BioBERTv1.1, with 1% F1 score. In addition, we notice that the scores of the
Speciesrelated datasets (Species-800 and LINNAEUS) gained higher scores than others; we argue that
is due to such datasets being easier than those with fuzzy categories to identify. E.g., QEMP
and BiodivNER have a class, “QUALITY” that groups data measures that cover vast and various
attributes of the biodiversity domain and would be harder to detect. For RE, we have mixed
results; for example, BiodivBERT+Abs+Full outperforms BioBERTv1.1 with a 2.5% F1 score for
EU-ADR. However, BioBERTv1.1 overcomes BiodivBERT+Abs+Full with 3% F1 score for BiodivRE.
We plan to apply different fine-tuning settings on those datasets to enhance the scores.</p>
    </sec>
    <sec id="sec-7">
      <title>6. Application</title>
      <p>
        In this section, we discuss a possible application for BiodivBERT: A while ago, we started
developing a biodiversity domain ontology, Biodivonto [
        <xref ref-type="bibr" rid="ref23">23</xref>
        ]. Such an ontology is needed for
many applications both by us and for other researchers in the field. BiodivOnto consists of
eight core concepts including, e.g., “Organism”, “Environment”, “Location”, and three core
relations: have, in, and influence. So far, the population of the ontology with instances is
incomplete. Adding instances manually is prohibitively expensive. Since the ontology is
the basis of BiodivNERE [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ] for both tasks, BiodivBERT could be used to auto-populate the
ontology. For instance, Seabass would be classified as an “Organism”. In a final step, the
identified instances should be linked to existing knowledge graphs. e.g., Seabass would be
mapped to http://www.wikidata.org/entity/Q307102 from Wikidata. This could be done, e.g.
using our approach described in [
        <xref ref-type="bibr" rid="ref24">24</xref>
        ]. With this, BiodivBERT has the potential to bring us
closer to our ultimate goal, the creation of a comprehensive biodiversity knowledge graph out
of textual data.
      </p>
      <p>Dataset
Spieces-800
LINNANUS
COPIOUS</p>
      <p>QEMP
BiodivNER</p>
      <p>P
R
F
P
R
F
P
R
F
P
R
F
P
R
F</p>
    </sec>
    <sec id="sec-8">
      <title>7. Conclusions &amp; Future Work</title>
      <p>In this paper, we introduced BiodivBERT as a pre-trained language model on two
domainspecific corpora based on modern research data from the biodiversity domain. In addition,
we fine-tuned it on two downstream tasks for text mining: named entity recognition (NER)
and relation extraction (RE). BiodivBERT outperforms the state-of-the-art approaches on
taskspecific datasets.</p>
      <p>
        Future Work: We plan to pre-train and fine-tune a lightweight model, e.g., distilBERT [
        <xref ref-type="bibr" rid="ref25">25</xref>
        ].
We also plan to investigate the reasons behind the low scores on the RE task, especially with the
BiodivRE and BioRelEx datasets. For example, we could try different settings for fine-tuning. In
addition, we fine-tune BiodivBERT on more task-specific datasets whenever they are available.
Finally, we deploy BiodivBERT for actual token and sequence prediction for the biodiversity
literature to auto-populate the BiodivOnto.
      </p>
      <p>Acknowledgments
The authors thank the Carl Zeiss Foundation for the financial support of the project “A Virtual Werkstatt
for Digitization in the Sciences (K3, P5)” within the scope of the program line “Breakthroughs: Exploring
Intelligent Systems for Digitization” - explore the basics, use applications. Our sincere thanks to Björn
Barz, Luise Modersohn, Jitendra Gaikwad, Anahita Kazem, Alsayed Algergawy, Leila Feddoul, Anirudh
Ashok, and Andreas Ostrowski, University Jena for their recommendations, and help.
Data Journal 7 (2019) e29626. URL: https://doi.org/10.3897/BDJ.7.e29626. doi:1 0 . 3 8 9 7 / B D J .
7 . e 2 9 6 2 6 .</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>E. S.</given-names>
            <surname>Brondizio</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Settele</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Díaz</surname>
          </string-name>
          , H. T. Ngo,
          <article-title>Global assessment report on biodiversity and ecosystem services of the intergovernmental science-policy platform on biodiversity and ecosystem services (</article-title>
          <year>2019</year>
          ). URL: https://ipbes.net/global-assessment.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <surname>N. T.H.</surname>
          </string-name>
           Nguyen,
          <string-name>
            <given-names>R. S.</given-names>
             
            <surname>Gabud</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Ananiadou</surname>
          </string-name>
          ,
          <article-title>Copious: A gold standard corpus of named entities towards extracting species occurrence from biodiversity literature</article-title>
          , Biodiversity
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>T.</given-names>
            <surname>Mikolov</surname>
          </string-name>
          , I. Sutskever,
          <string-name>
            <given-names>K.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G. S.</given-names>
            <surname>Corrado</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Dean</surname>
          </string-name>
          ,
          <article-title>Distributed representations of words and phrases and their compositionality</article-title>
          ,
          <source>Advances in neural information processing systems</source>
          <volume>26</volume>
          (
          <year>2013</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>J.</given-names>
            <surname>Pennington</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Socher</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C. D.</given-names>
            <surname>Manning</surname>
          </string-name>
          , Glove:
          <article-title>Global vectors for word representation</article-title>
          ,
          <source>in: Proceedings of the 2014 conference on empirical methods in natural language processing (EMNLP)</source>
          ,
          <year>2014</year>
          , pp.
          <fpage>1532</fpage>
          -
          <lpage>1543</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <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>
          ,
          <article-title>Deep contextualized word representations</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>2227</fpage>
          -
          <lpage>2237</lpage>
          . URL: https://aclanthology.org/N18-1202.
          <source>doi:1 0 . 1 8</source>
          <volume>6 5 3</volume>
          / v 1 / N 1 8
          <article-title>- 1 2 0 2</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>J.</given-names>
            <surname>Devlin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</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>
          ,
          <article-title>BERT: pre-training of deep bidirectional transformers for language understanding</article-title>
          , in: J.
          <string-name>
            <surname>Burstein</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Doran</surname>
          </string-name>
          , T. Solorio (Eds.),
          <source>Proceedings of the</source>
          <year>2019</year>
          <article-title>Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, NAACL-HLT 2019, Minneapolis</article-title>
          , MN, USA, June 2-7,
          <year>2019</year>
          , Volume
          <volume>1</volume>
          (Long and Short Papers),
          <source>Association for Computational Linguistics</source>
          ,
          <year>2019</year>
          , pp.
          <fpage>4171</fpage>
          -
          <lpage>4186</lpage>
          . doi:
          <article-title>1 0 . 1 8 6 5 3 / v 1 / n 1 9 - 1 4 2 3</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <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>
            <surname>J. 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="ref8">
        <mixed-citation>
          [8]
          <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>Jin</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>
          .
          <source>doi:1 0 . 1 8</source>
          <volume>6 5 3</volume>
          / v 1 / W 1 9
          <article-title>- 1 9 0 9</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>N.</given-names>
            <surname>Abdelmageed</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Löffler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>König-Ries</surname>
          </string-name>
          ,
          <article-title>Biodivbert: Pre-training corpora dois</article-title>
          ,
          <source>2022. doi:1 0 . 5 2 8 1 / z e n o d o . 6 5</source>
          <volume>5 5 6 9 0 .</volume>
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>N.</given-names>
            <surname>Abdelmageed</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Löffler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>König-Ries</surname>
          </string-name>
          ,
          <article-title>BiodivBERT: Pre-processed Datasets for NER and</article-title>
          RE Downstream Tasks,
          <year>2022</year>
          .
          <source>doi:1 0 . 5 2 8 1 / z e n o d o . 6 5</source>
          <volume>5 4 2 0 8 .</volume>
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>N.</given-names>
            <surname>Abdelmageed</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Löffler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>König-Ries</surname>
          </string-name>
          ,
          <article-title>BiodivBERT: Pre-trained weights, configuration</article-title>
          , and training arguments,
          <source>2022. doi:1 0 . 5 2 8 1 / z e n o d o . 6 5</source>
          <volume>5 4 1 4 1 .</volume>
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12] GROBID, https://github.com/kermitt2/grobid, 2008-
          <fpage>2021</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Wu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Schuster</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q. V.</given-names>
            <surname>Le</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Norouzi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Macherey</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Krikun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Cao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Gao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Macherey</surname>
          </string-name>
          , et al.,
          <article-title>Google's neural machine translation system: Bridging the gap between human and machine translation</article-title>
          ,
          <source>arXiv preprint arXiv:1609.08144</source>
          (
          <year>2016</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>T.</given-names>
            <surname>Wolf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Debut</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Sanh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Chaumond</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Delangue</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Moi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Cistac</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Rault</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Louf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Funtowicz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Davison</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Shleifer</surname>
          </string-name>
          , P. von Platen, C. Ma,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Jernite</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Plu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Xu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T. L.</given-names>
            <surname>Scao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Gugger</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Drame</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Lhoest</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. M.</given-names>
            <surname>Rush</surname>
          </string-name>
          , Transformers:
          <article-title>State-of-the-art natural language processing</article-title>
          ,
          <source>in: Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing: System Demonstrations</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Online,
          <year>2020</year>
          , pp.
          <fpage>38</fpage>
          -
          <lpage>45</lpage>
          . URL: https://www.aclweb.org/anthology/2020.emnlp-demos.
          <volume>6</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>F.</given-names>
            <surname>Löffler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Abdelmageed</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Babalou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Kaur</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>König-Ries</surname>
          </string-name>
          ,
          <article-title>Tag me if you can! semantic annotation of biodiversity metadata with the QEMP corpus and the BiodivTagger</article-title>
          ,
          <source>in: Proceedings of the 12th Language Resources and Evaluation Conference</source>
          , European Language Resources Association, Marseille, France,
          <year>2020</year>
          , pp.
          <fpage>4557</fpage>
          -
          <lpage>4564</lpage>
          . URL: https://aclanthology.org/
          <year>2020</year>
          .lrec-
          <volume>1</volume>
          .
          <fpage>560</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>N.</given-names>
            <surname>Abdelmageed</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Löffler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Feddoul</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Algergawy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Samuel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Gaikwad</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Kazem</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>König-Ries</surname>
          </string-name>
          ,
          <article-title>Biodivnere: Gold standard corpora for named entity recognition and relation extraction in the biodiversity domain</article-title>
          ,
          <source>Biodiversity Data Journal</source>
          <volume>10</volume>
          (
          <year>2022</year>
          )
          <article-title>e89481</article-title>
          . URL: https://doi.org/10.3897/BDJ.10.e89481.
          <source>doi:1 0 . 3 8 9 7 / B D J . 1 0 . e 8 9</source>
          <volume>4 8 1 .</volume>
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>N.</given-names>
            <surname>Abdelmageed</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Löffler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Feddoul</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Algergawy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Samuel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Gaikwad</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Kazem</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>König-Ries</surname>
          </string-name>
          ,
          <article-title>BiodivNERE: Gold Standard Corpora for Named Entity Recognition and Relation Extraction in Biodiversity Domain</article-title>
          ,
          <year>2022</year>
          . URL: https://doi.org/10.5281/zenodo. 6458503.
          <source>doi:1 0 . 5 2 8 1 / z e n o d o . 6 4</source>
          <volume>5 8 5 0 3 .</volume>
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <given-names>E.</given-names>
            <surname>Pafilis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. P.</given-names>
            <surname>Frankild</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Fanini</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Faulwetter</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Pavloudi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Vasileiadou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Arvanitidis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L. J.</given-names>
            <surname>Jensen</surname>
          </string-name>
          ,
          <article-title>The species and organisms resources for fast and accurate identification of taxonomic names in text</article-title>
          ,
          <source>PloS one 8</source>
          (
          <year>2013</year>
          )
          <article-title>e65390</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <given-names>M.</given-names>
            <surname>Gerner</surname>
          </string-name>
          , G. Nenadic,
          <string-name>
            <given-names>C. M.</given-names>
            <surname>Bergman</surname>
          </string-name>
          ,
          <article-title>Linnaeus: a species name identification system for biomedical literature</article-title>
          ,
          <source>BMC bioinformatics 11</source>
          (
          <year>2010</year>
          )
          <fpage>1</fpage>
          -
          <lpage>17</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <given-names>H.</given-names>
            <surname>Khachatrian</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Nersisyan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Hambardzumyan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Galstyan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Hakobyan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Arakelyan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Rzhetsky</surname>
          </string-name>
          ,
          <string-name>
            <surname>A</surname>
          </string-name>
          . Galstyan, BioRelEx
          <volume>1</volume>
          .
          <article-title>0: Biological relation extraction benchmark</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>176</fpage>
          -
          <lpage>190</lpage>
          . URL: https://aclanthology.org/W19-5019.
          <source>doi:1 0 . 1 8</source>
          <volume>6 5 3</volume>
          / v 1 / W 1 9
          <article-title>- 5 0 1 9</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <surname>E. M. Van Mulligen</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Fourrier-Reglat</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Gurwitz</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Molokhia</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Nieto</surname>
            , G. Trifiro,
            <given-names>J. A.</given-names>
          </string-name>
          <string-name>
            <surname>Kors</surname>
            ,
            <given-names>L. I. Furlong</given-names>
          </string-name>
          ,
          <article-title>The eu-adr corpus: annotated drugs, diseases, targets, and their relationships</article-title>
          ,
          <source>Journal of biomedical informatics 45</source>
          (
          <year>2012</year>
          )
          <fpage>879</fpage>
          -
          <lpage>884</lpage>
          . URL: https: //www.sciencedirect.com/science/article/pii/S1532046412000573.
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [22]
          <string-name>
            <surname>À. Bravo</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Piñero</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Queralt-Rosinach</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Rautschka</surname>
            ,
            <given-names>L. I. Furlong</given-names>
          </string-name>
          ,
          <article-title>Extraction of relations between genes and diseases from text and large-scale data analysis: implications for translational research</article-title>
          ,
          <source>BMC bioinformatics 16</source>
          (
          <year>2015</year>
          )
          <fpage>1</fpage>
          -
          <lpage>17</lpage>
          . URL: https://bmcbioinformatics. biomedcentral.com/track/pdf/10.1186/s12859-015-0472-9.pdf.
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [23]
          <string-name>
            <given-names>N.</given-names>
            <surname>Abdelmageed</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Algergawy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Samuel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>König-Ries</surname>
          </string-name>
          ,
          <article-title>Biodivonto: Towards a core ontology for biodiversity</article-title>
          , in: The Semantic Web: ESWC 2021
          <string-name>
            <surname>Satellite Events - Virtual Event</surname>
          </string-name>
          , June 6-10,
          <year>2021</year>
          , Revised Selected Papers, volume
          <volume>12739</volume>
          , Springer,
          <year>2021</year>
          , pp.
          <fpage>3</fpage>
          -
          <lpage>8</lpage>
          .
          <source>doi:1 0 . 1 0</source>
          <volume>0 7 / 9 7 8 - 3 - 0 3 0 - 8 0 4 1 8 - 3</volume>
          \ _ 1 .
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [24]
          <string-name>
            <given-names>N.</given-names>
            <surname>Abdelmageed</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Schindler</surname>
          </string-name>
          , Jentab:
          <article-title>Matching tabular data to knowledge graphs., in: Proceedings of the Semantic Web Challenge on Tabular Data to Knowledge Graph Matching (SemTab 2020) co-located with the 19th</article-title>
          <source>International Semantic Web Conference ISWC</source>
          ,
          <year>2020</year>
          , pp.
          <fpage>40</fpage>
          -
          <lpage>49</lpage>
          . URL: https://ceur-ws.
          <source>org/</source>
          Vol-
          <volume>2775</volume>
          /paper4.pdf.
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          [25]
          <string-name>
            <given-names>V.</given-names>
            <surname>Sanh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Debut</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Chaumond</surname>
          </string-name>
          , T. Wolf,
          <article-title>Distilbert, a distilled version of bert: smaller, faster, cheaper and lighter</article-title>
          , arXiv preprint arXiv:
          <year>1910</year>
          .
          <volume>01108</volume>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>