<!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>Evaluation of Data Augmentation for Named Entity Recognition in the German Legal Domain</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Robin Erd</string-name>
          <email>robin.erd@uni-jena.de</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Leila Feddoul</string-name>
          <email>leila.feddoul@uni-jena.de</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Clara Lachenmaier</string-name>
          <email>clara.lachenmaier@uni-bielefeld.de</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Marianne Jana Mauch</string-name>
          <email>marianne.mauch@uni-jena.de</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Computatitional Linguistics, Bielefeld University</institution>
          ,
          <addr-line>Bielefeld</addr-line>
          ,
          <country country="DE">Germany</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Heinz Nixdorf Chair for Distributed Information Systems, Friedrich Schiller University Jena</institution>
          ,
          <addr-line>Jena</addr-line>
          ,
          <country country="DE">Germany</country>
        </aff>
      </contrib-group>
      <fpage>62</fpage>
      <lpage>72</lpage>
      <abstract>
        <p>One of the techniques to solve Natural Language Processing tasks is supervised learning, which requires large labeled datasets for model training. Such datasets are usually unavailable for specific domains or languages other than English. Creating them manually is a time-consuming task. This paper aims to explore methods to artificially expand small datasets in the German legal domain. We tested three Data Augmentation approaches on diferently sized fragments of the German Legal Entity Recognition dataset: Synonym replacement, mention replacement, and back translation. We evaluated the efect of training on the augmented data with a bidirectional Long Short-Term Memory Network with a Conditional Random Field layer and a Transformer-based model. It appears that synonym replacement and mention replacement yield similarly positive results, while the latter is less time-consuming. Performing back translation turns out as challenging using legal texts.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Named Entity Recognition</kwd>
        <kwd>Data Augmentation</kwd>
        <kwd>German Legal Domain</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        to support this legal analysis by performing automatic suggestions about relevant objects. In
this context, Named Entity Recognition (NER) techniques are investigated. NER aims to detect
and classify Named Entities (NEs), e.g., persons in unstructured text. It allows machines to
better understand the contained information and serves as an initial step for performing more
complex tasks (e.g., question answering). In our context, it will be used as a basis for further
processing to identify possible process steps and their interaction with other process elements.
However, common NE classes are often reflecting generic concepts. As soon as texts cover
specific domains that deal with particular phenomena, general NER classes do not sufice to
depict all concepts of the certain niche. Recent datasets used special domain-specific tags for
legal texts, such as lawyer, legal norm, or court [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. Nevertheless, the dataset is not covering the
specific properties related to administrative processes. To the best of our knowledge, no labeled
dataset exists using those specific tags.
      </p>
      <p>
        NER is often solved by training supervised machine learning models, which learn complex
features, when they are provided with suficient labeled data. The process of manual data
labeling could involve domain experts and is time-consuming. In this context, we want to
investigate techniques for Data Augmentation (DA) using another dataset similar in nature to
our target data. Small datasets can be enlarged by generating new training data automatically
using DA. Some of the methods for DA in the field of Natural Language Processing (NLP) and
specifically NER are, among others: synonym replacement [
        <xref ref-type="bibr" rid="ref2 ref3 ref4 ref5">2, 3, 4, 5</xref>
        ], mention replacement2
[
        <xref ref-type="bibr" rid="ref5 ref6 ref7">6, 5, 7</xref>
        ], random deletion [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ], random insertion [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ], random swap [
        <xref ref-type="bibr" rid="ref3 ref5">3, 5</xref>
        ], noising techniques [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ],
TF-IDF based word replacement [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ], back translation [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ], and generative approaches[
        <xref ref-type="bibr" rid="ref10 ref11 ref12">10, 11, 12</xref>
        ].
      </p>
      <p>There are works considering various aspects of diferent DA techniques, but to the best of our
knowledge: (1) none uses data from the legal domain and all of them mainly consider English
data, (2) none compares diferent sources that can be used with the synonym replacement,
and (3) other implementations of back translation only perform segment-wise back translation
while excluding entities, limiting the degree of change that might be achieved, or employ a NER
model to re-annotate the back translated sentences.</p>
      <p>
        Our goal is to evaluate and compare DA techniques for the NER task, explicitly focusing on
the German legal domain and thus using the German Legal Entity Recognition (LER) dataset
[
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. The key contributions of this paper are:
1. A workflow for the generation and augmentation of diferent dataset fractions using three
diferent DA techniques along with three diferent synonym sources.
2. A back translation method that (1) does not rely on pre-trained models for translation
or re-annotation, and (2) translates the whole sentence, including entities, and thereby
enriches the mentions space.
3. Evaluation and comparison of the efectiveness of the selected DA approaches using two
deep learning models on a German legal dataset.
      </p>
      <p>
        The source code for data generation and evaluation is publicly available [
        <xref ref-type="bibr" rid="ref13">13, 14</xref>
        ] under an
MIT License. Generated datasets [15] and evaluation results [16] are published on Zenodo.
      </p>
      <sec id="sec-1-1">
        <title>2Note that in NER, the terms "mention" and "entity" can be used interchangeably.</title>
      </sec>
    </sec>
    <sec id="sec-2">
      <title>2. Related Work</title>
      <p>Named Entity Recognition. With most research in NLP and specifically NER being conducted
in the English language, few works exist regarding NER in the German legal domain. Glaser et
al. [17] tested three techniques for extracting entities from German legal contracts: GermaNER,
DBpedia Spotlight [18], and templated NER. GermaNER and DBpedia Spotlight achieved an
F1-score of 0.80 and 0.87 respectively, while templated NER was tested on a smaller dataset
and achieved an F1-score of 0.92. Leitner et al. [19] evaluated diferent Bidirectional Long
Short-Term Memory (BiLSTM) networks with a Conditional Random Field (CRF) layer for
NER on the German LER dataset. The best performance was achieved using two BiLSTM-CRF
models with character embeddings with an F1-score of 0.9546. More recently, Zöllner et al.
[20] compared diferent pre-training techniques and a modified fine-tuning process for small
Bidirectional Encoder Representations from Transformers (BERT) [21] models and also used
the LER dataset for evaluation, achieving an F1-score of 0.9488.</p>
      <p>
        Data Augmentation. Replacement-based Techniques. The replacement of words was one
of the first techniques to be employed for DA. Zhang et al. [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] applied WordNet-based [22]
synonym replacement to eight text classification datasets. Wang et al. [ 23] applied
Word2vecbased synonym replacement to a newly created Twitter dataset used for topic classification.
Wu et al. [24] randomly replaced one to two words per sentence with a [MASK] token, which
was then to be filled by a label-conditioned contextual language model. Liu et al. [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] randomly
replaced mentions in the training data with mentions from a manually created dictionary
containing mentions not part of the training data.
      </p>
      <p>
        Combined Techniques. Wei et al. [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] presented four techniques for use with text classification
data now known as easy-data-augmentation (EDA) techniques, namely synonym replacement,
random insertion, random swap, and random deletion. Kang et al. [25] extended these, adding
an external knowledge-based system and modifying them to work with NER tasks. Shim et al.
[
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] and Issifu et al. [26] adapted the modified EDA techniques. Dai et al. [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] applied label-wise
token replacement, synonym replacement, mention replacement, and shufle within segments
techniques to the MaSciP (materials science) and i2b2-2010 (biomedical) NER datasets. Yaseen
et al. [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] used the same techniques as Dai et al., but applied them to the MaSciP and Species-800
datasets.
      </p>
      <p>
        Back Translation. Xie et al. [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] applied back translation to a topic classification dataset,
Luque et al. [27] used back translation to augment a sentiment analysis dataset. While all these
applications are sentence-level tasks, there has recently been an efort to apply back translation
to sequence-labeling data required by, e.g., the NER task. Yaseen et al. [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] applied segment-wise
back translation to the MaSciP and Species-800 datasets, back translating only the context,
excluding the entities. They achieved an increase in F1-score of 0.0645 and 0.0148, respectively.
Sabty et al. [28] applied back translation to Arabic-English code-switching3 NER data but did
not improve performance. Their task difers from our task as they also had to preserve the
code-switching property of the sentences. They re-annotated the back translated sentences
using a NER model, tested using trained models for translation instead of Google Translate, and
tried more than one pivotal language.
      </p>
      <sec id="sec-2-1">
        <title>3Code-switching refers to text containing more than one language in the same sentence.</title>
        <p>While previously mentioned works try to evaluate diferent DA approaches, they focus
on general domains and mostly consider English datasets. Furthermore, we do not find any
comparison of diferent synonym replacement sources. Considering back translation, the
mentioned works either only back translate the context of entities or use a model to perform
the translation and re-annotation.</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>3. Approach</title>
      <p>We implement and evaluate the following three DA techniques, each of which attempts to
create a modified copy of each sentence in the training dataset. A modified copy of a sentence
can only be created if all technique-specific conditions are met. This leads to varying numbers
of augmented sentences between the applied DA techniques. In addition, only sentences
whose tokenization is reproducible can be augmented. One could also augment the dataset
iteratively, generating multiple augmented sentences for each original sentence, but in that case
a mechanism should be applied to avoid duplicates and ensure suficient degrees of variation.
We have applied just one augmentation iteration round. Generated sentences are appended to
the original training dataset.</p>
      <p>Synonym Replacement. We substitute a percentage of not-tagged, qualified 4 tokens in
the sentence with a replacement similar in meaning. We compare three diferent external
sources for replacements: OpenThesaurus [29], fastText embeddings [30], and the contextual
language model XLM-RoBERTa [31]. The augmentation of a sentence only succeeds if the
selected replacement source provides a replacement for the selected tokens and at least one
token qualifies for replacement (e.g., numbers are not qualified). Furthermore, the selected
replacement percentage has to amount to at least one token.
4We filter replacement candidates with a regular expression to avoid replacing or inserting, e.g., punctuation.</p>
      <p>Mention Replacement. For each mention in the sentence, we replace it with a random
mention of the same class from the original training set. Only sentences containing mentions
can be augmented using this technique.</p>
      <p>Back Translation. We first extract all mentions and their class from the sentence. We then
back translate the complete sentence as a plain string and the extracted mentions separately
using the BackTranslation 5 python package, which depends on external services to provide
translations. We then map the extracted mentions back to the back translated sentence based
on their token sequence6. As pivotal language, we decided to use English. With this process,
we essentially preserve the original labels and adapt them to the new sentence, adding new
mention variants to the dataset and foregoing the need to use a NER model to perform the
re-annotation.</p>
    </sec>
    <sec id="sec-4">
      <title>4. Experiments</title>
      <sec id="sec-4-1">
        <title>4.1. Experimental setup</title>
        <p>All experiments were performed on AlmaLinux 8.3 using Python 3.9.12. Training and evaluation
are run on a single NVIDIA A100 GPU.</p>
        <p>
          Dataset. We evaluate the DA methods on the German LER dataset, containing ≈ 67, 000
sentences with over 2 million tokens classified into 19 fine-grained semantic classes 7. As the
train/dev/test splits are not provided, we split the data ourselves to 70/15/15 splits.
Consequently, our training split contains 46, 706 sentences. We work with IOB2 [32], the tagging
scheme in which the data is provided. When working with the data during augmentation,
the tokenization of the original sentence should be reproduced. Therefore we use the SoMaJo
tokenizer [33] used by Leitner et al [
          <xref ref-type="bibr" rid="ref1">1</xref>
          ].
        </p>
        <p>NER Models. To evaluate the efect of the DA techniques, we choose two models. One is
BiLSTM-CRF, implemented using the FLAIR framework [34]. Following the recommendations
of Akbik et al. [35], we use it with stacked German fastText and German forward and backward
FLAIR embeddings, train the model using Stochastic Gradient Descent without momentum,
clip gradients at 5, and anneal the learning rate against the micro F1-score on the dev split,
5https://pypi.org/project/BackTranslation/, accessed on 03.08.2022
6This is only possible if a sentence does not contain a token sequence multiple times with diferent label sequences
each. If mapping the extracted mentions to the new sentence fails, the augmentation of this particular original
sentence is canceled.
7Leitner et al. found that some tags, such as street, landscape, brand and regulation are more dificult to predict than
e.g., judge, law and court.
halving it if the score does not increase for 5 consecutive epochs. We use a learning rate of 0.05,
a mini-batch size of 32, apply variational dropout and train the model for 150 epochs but stop
earlier if the learning rate falls below 0.0001.</p>
        <p>The other model is a Transformer-based model, implemented using the FLERT extension
[36] of the FLAIR framework. We chose the XLM-RoBERTa Transformer model (XLM-R) over
models trained specifically for the German language as preliminary studies showed that it
achieves better results on the LER dataset than, e.g., GELECTRA [37]. We fine-tune it for 10
epochs using the AdamW optimizer with a mini-batch size of 1. The learning rate increases from
0 to 5 − 6 during the warm-up phase and then linearly decreases, reaching 0 by the end of the
training.</p>
      </sec>
      <sec id="sec-4-2">
        <title>4.2. Results</title>
        <p>Table 2 provides the baseline results on the test set before applying the DA techniques as well as
the results after applying synonym replacement. We use the micro F1-score to evaluate model
performance. Baseline results show that in very low-data settings, BiLSTM-CRF outperforms
XLM-R. For all other dataset fractions, XLM-R outperforms BiLSTM-CRF. Note that a relatively
good performance is achieved with only 10% and 30% of the original dataset.</p>
        <p>Synonym Replacement. Depending on the selected configuration, synonym replacement
is the most expensive technique, taking up to 12 seconds per sentence when using the
contextual language model as source in combination with a replacement percentage of 60%. The
augmentation of the German LER dataset consequently took between 5 and 155 hours, boosting
the dataset size by up to 87.3% when applied with a replacement percentage of 60% and using
fastText or the contextual language model as source. Our replacement percentages of 20%,
40% and 60% of eligible tokens result in around 10.8%, 22.7%, and 34.6% of total tokens being
replaced.</p>
        <p>OpenThesaurus. Using OpenThesaurus as source, we notice that a higher replacement
percentage improves XLM-R performance, while for BiLSTM-CRF, it does not. XLM-R trained
on the larger datasets benefits marginally from applying DA, while for BiLSTM-CRF, we get a
mixed picture.</p>
        <p>fastText. With fastText embeddings, a higher replacement percentage improves BiLSTM-CRF
performance, while for XLM-R , it does not. Additionally, we notice that the performance of the
XLM-R model after training on the larger datasets is impacted very slightly by DA. In contrast,
BiLSTM-CRF shows improvements for the 50%-dataset.</p>
        <p>Contextual Language Model. For the 1%, 10%, and 30% datasets, XLM-R benefits more than
BiLSTM-CRF. In contrast to other sources, we notice that a higher replacement percentage
does not increase but reduces the augmentation’s positive impact across all dataset and model
combinations. The augmentation afects the performance on the 100%-dataset only marginally.</p>
        <p>Overall. Figure 2 shows the average relative improvement in micro F1-score across all datasets
achieved by applying synonym replacement. We notice that XLM-R benefits more from DA than
BiLSTM-CRF, with the contextual language model as source yielding the greatest improvement.
Applying synonym replacement leads to improvements in most cases. We deduce that the
contextual language model is best used with a low replacement percentage.</p>
        <p>Mention Replacement. Mention replacement is the least expensive technique, with the
augmentation taking only 0.011 seconds per sentence. It increased the dataset size by 37.854%.
that the improvements for all datasets larger than the 10%-dataset are minor. The maximum
relative improvement is achieved with the 1%-dataset for both models. The average change
in micro F1-score across all datasets is +0.0075 and +0.0194 for BiLSTM-CRF and XLM-R.
We also evaluated, although without notable results, the efect of applying both mention and
synonym replacement combined.</p>
        <p>Back Translation. By applying back translation, we were able to increase the dataset size by
63.24%, boosting the total number of annotated entities by 17.52%. However, we do not register
a significant impact on the performance regarding the micro F1-score of either BiLSTM-CRF or</p>
        <p>XLM−R
CLM FTX THE CLM FTX THE</p>
        <p>Replacement Source</p>
        <p>Replacement
Percentage
20%
40%
60%
XLM-R. The average change in micro F1-score across all datasets is +0.0018 and −0.0025 for
BiLSTM-CRF and XLM-R.</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Conclusion and Future Work</title>
      <p>We implemented three diferent DA techniques for use with NER training data, evaluated them
on data from the German legal domain, and compared diferent German replacement sources
and percentages for synonym replacement. We believe that the proposed implementation of
back translation is unique in its ability to back translate entire sentences while preserving their
labels. Our workflow included two models and five diferent fractions of the full dataset.</p>
      <p>We found that DA can be beneficial when working with small datasets, such as the 1%
dataset, containing only 468 sentences. Considering that synonym and mention replacement
deliver comparable improvements, the latter is the most eficient. For synonym replacement,
the contextual language model is the most efective source. Back translation is challenged by
the long and nested sentences, occasional ambiguities, and frequently occurring legal concepts
that do not exist in the country’s legal system of the used pivotal language. Back translation
achieved a maximum improvement of +0.0065 using BiLSTM-CRF with the 1%-dataset. Mention
replacement achieved a maximum improvement of +0.0772 using XLM-R with the 1%-dataset.
Synonym replacement achieved a maximum improvement of +0.0943 using XLM-R with the
1%-dataset, a replacement percentage of 20% and the contextual language model as source.</p>
      <p>Future work could focus on improving the proposed back translation technique by, e.g.,
adding more flexibility to the re-annotation process. Mention replacement could be extended
to get the replacements from, e.g., a knowledge base, to introduce new entities. Synonym
replacement could benefit from a mechanism that prevents the replacements from being too
similar to the original token. In the context of the Canaréno project, this evaluation gives
us more insights about which techniques are better suited to augment our small manually
annotated dataset, before applying and evaluating diferent NER models.</p>
    </sec>
    <sec id="sec-6">
      <title>Acknowledgments</title>
      <p>The project Canaréno was funded by the Federal Ministry of the Interior and Community and
the Free State of Thuringia. We also thank Prof. Dr. Birgitta König-Ries and Pr. Dr. Sina Zarrieß
for the guidance and feedback.
[14] R. Erd, L. Feddoul, fusion-jena/data-augmentation-ner-legal v1.0.1, 2022. doi:10.5281/
zenodo.6992392.
[15] R. Erd, L. Feddoul, C. Lachenmaier, M. J. Mauch, data-augmentation-ner-datasets, 2022.</p>
      <p>doi:10.5281/zenodo.6956603.
[16] R. Erd, L. Feddoul, C. Lachenmaier, M. J. Mauch, data-augmentation-ner-results, 2022.</p>
      <p>doi:10.5281/zenodo.6956508.
[17] I. Glaser, B. Waltl, F. Matthes, Named entity recognition, extraction, and linking in German
legal contracts, in: IRIS: Internationales Rechtsinformatik Symposium, 2018, pp. 325–334.
[18] P. N. Mendes, M. Jakob, A. García-Silva, C. Bizer, DBpedia spotlight: shedding light on the
web of documents, in: I-SEMANTICS 2011, ACM International Conference Proceeding
Series, ACM, 2011, pp. 1–8. doi:10.1145/2063518.2063519.
[19] E. Leitner, G. Rehm, J. Moreno-Schneider, Fine-Grained Named Entity Recognition in Legal
Documents, in: SEMANTiCS 2019, Springer International Publishing, 2019, pp. 272–287.
doi:10.1007/978-3-030-33220-4\_20.
[20] J. Zöllner, K. Sperfeld, C. Wick, R. Labahn, Optimizing Small BERTs Trained for German</p>
      <p>NER, Inf. 12 (2021) 443. doi:10.3390/info12110443.
[21] J. Devlin, M. Chang, K. Lee, K. Toutanova, BERT: Pre-training of Deep Bidirectional
Transformers for Language Understanding, in: NAACL-HLT 2019, Association for
Computational Linguistics, 2019, pp. 4171–4186. doi:10.18653/v1/n19-1423.
[22] C. Fellbaum, WordNet: An Electronic Lexical Database, The MIT Press, 1998. doi:10.</p>
      <p>7551/mitpress/7287.001.0001.
[23] W. Y. Wang, D. Yang, That’s So Annoying!!!: A Lexical and Frame-Semantic Embedding
Based Data Augmentation Approach to Automatic Categorization of Annoying Behaviors
using #petpeeve Tweets, in: EMNLP 2015, Association for Computational Linguistics,
2015, pp. 2557–2563. doi:10.18653/v1/D15-1306.
[24] X. Wu, S. Lv, L. Zang, J. Han, S. Hu, Conditional BERT Contextual
Augmentation, in: ICCS 2019, Springer International Publishing, 2019, pp. 84–95. doi:10.1007/
978-3-030-22747-0\_7.
[25] T. Kang, A. Perotte, Y. Tang, C. Ta, C. Weng, UMLS-based data augmentation for natural
language processing of clinical research literature, Journal of the American Medical
Informatics Association 28 (2020) 812–823. doi:10.1093/jamia/ocaa309.
[26] A. M. Issifu, M. C. Ganiz, A Simple Data Augmentation Method to Improve the Performance
of Named Entity Recognition Models in Medical Domain, in: 2021 6th International
Conference on Computer Science and Engineering (UBMK), 2021, pp. 763–768. doi:10.
1109/UBMK52708.2021.9558986.
[27] F. M. Luque, Atalaya at TASS 2019: Data Augmentation and Robust Embeddings for
Sentiment Analysis, in: IberLEF@SEPLN 2019, CEUR-WS.org, 2019, pp. 561–570. URL:
http://ceur-ws.org/Vol-2421/TASS_paper_1.pdf.
[28] C. Sabty, I. Omar, F. Wasfalla, M. Islam, S. Abdennadher, Data Augmentation Techniques
on Arabic Data for Named Entity Recognition, Procedia Computer Science 189 (2021)
292–299. doi:10.1016/j.procs.2021.05.092.
[29] D. Naber, OpenThesaurus: ein ofenes deutsches Wortnetz, Sprachtechnologie, mobile
Kommunikation und linguistische Ressourcen: Beiträge zur GLDV-Tagung, Bonn, Germany
(2005) 422–433.
[30] P. Bojanowski, E. Grave, A. Joulin, T. Mikolov, Enriching Word Vectors with Subword
Information, Trans. Assoc. Comput. Linguistics 5 (2017) 135–146. doi:10.1162/tacl\
_a\_00051.
[31] A. Conneau, K. Khandelwal, N. Goyal, V. Chaudhary, G. Wenzek, F. Guzmán, E. Grave,
M. Ott, L. Zettlemoyer, V. Stoyanov, Unsupervised Cross-lingual Representation Learning
at Scale, in: ACL 2020, Association for Computational Linguistics, 2020, pp. 8440–8451.
doi:10.18653/v1/2020.acl-main.747.
[32] M. Konkol, M. Konopík, Segment Representations in Named Entity Recognition, in: Text,
Speech, and Dialogue, Springer International Publishing, 2015, pp. 61–70. doi:10.1007/
978-3-319-24033-6\_7.
[33] T. Proisl, P. Uhrig, SoMaJo: State-of-the-art tokenization for German web and social media
texts, in: WAC@ACL 2016, Association for Computational Linguistics, 2016, pp. 57–62.
doi:10.18653/v1/W16-2607.
[34] A. Akbik, T. Bergmann, D. Blythe, K. Rasul, S. Schweter, R. Vollgraf, FLAIR: An Easy-to-Use
Framework for State-of-the-Art NLP, in: NAACL-HLT 2019, Association for Computational
Linguistics, 2019, pp. 54–59. doi:10.18653/v1/n19-4010.
[35] A. Akbik, D. Blythe, R. Vollgraf, Contextual String Embeddings for Sequence Labeling,
in: COLLING 2018, Association for Computational Linguistics, 2018, pp. 1638–1649. URL:
https://aclanthology.org/C18-1139.
[36] S. Schweter, A. Akbik, FLERT: Document-Level Features for Named Entity Recognition
(2020). doi:10.48550/ARXIV.2011.06993.
[37] B. Chan, S. Schweter, T. Möller, German’s Next Language Model, in: COLING 2020,
International Committee on Computational Linguistics, 2020, pp. 6788–6796. doi:10.18653/
v1/2020.coling-main.598.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>E.</given-names>
            <surname>Leitner</surname>
          </string-name>
          , G. Rehm,
          <string-name>
            <given-names>J.</given-names>
            <surname>Moreno-Schneider</surname>
          </string-name>
          ,
          <article-title>A Dataset of German Legal Documents for Named Entity Recognition</article-title>
          ,
          <source>in: LREC</source>
          <year>2020</year>
          ,
          <string-name>
            <given-names>European</given-names>
            <surname>Language Resources Association</surname>
          </string-name>
          ,
          <year>2020</year>
          , pp.
          <fpage>4478</fpage>
          -
          <lpage>4485</lpage>
          . URL: https://aclanthology.org/
          <year>2020</year>
          .lrec-
          <volume>1</volume>
          .
          <fpage>551</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>X.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. J.</given-names>
            <surname>Zhao</surname>
          </string-name>
          ,
          <string-name>
            <surname>Y.</surname>
          </string-name>
          <article-title>LeCun, Character-level Convolutional Networks for Text Classiifcation</article-title>
          ,
          <source>in: NIPS</source>
          <year>2015</year>
          ,
          <year>2015</year>
          , pp.
          <fpage>649</fpage>
          -
          <lpage>657</lpage>
          . URL: https://dl.acm.org/doi/10.5555/2969239. 2969312.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>J.</given-names>
            <surname>Wei</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Zou</surname>
          </string-name>
          , EDA:
          <article-title>Easy Data Augmentation Techniques for Boosting Performance on Text Classification Tasks</article-title>
          ,
          <source>in: EMNLP@IJCNLP</source>
          <year>2019</year>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          ,
          <year>2019</year>
          , pp.
          <fpage>6382</fpage>
          -
          <lpage>6388</lpage>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>D19</fpage>
          -1670.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>H.</given-names>
            <surname>Shim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Luca</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Lowet</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Vanrumste</surname>
          </string-name>
          ,
          <article-title>Data Augmentation and Semi-Supervised Learning for Deep Neural Networks-Based Text Classifier</article-title>
          , Association for Computing Machinery,
          <year>2020</year>
          , pp.
          <fpage>1119</fpage>
          -
          <lpage>1126</lpage>
          . doi:
          <volume>10</volume>
          .1145/3341105.3373992.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>X.</given-names>
            <surname>Dai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Adel</surname>
          </string-name>
          ,
          <article-title>An Analysis of Simple Data Augmentation for Named Entity Recognition</article-title>
          ,
          <source>in: COLING</source>
          <year>2020</year>
          ,
          <source>International Committee on Computational Linguistics</source>
          ,
          <year>2020</year>
          , pp.
          <fpage>3861</fpage>
          -
          <lpage>3867</lpage>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2020</year>
          .coling-main.
          <volume>343</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>J.</given-names>
            <surname>Raiman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Miller</surname>
          </string-name>
          , Globally Normalized Reader,
          <source>in: EMNLP</source>
          <year>2017</year>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          ,
          <year>2017</year>
          , pp.
          <fpage>1059</fpage>
          -
          <lpage>1069</lpage>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>D17</fpage>
          -1111.
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>Q.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Lu</surname>
          </string-name>
          , Q. Cheng, Long-tail
          <source>Dataset Entity Recognition based on Data Augmentation, in: EEKE@JCDL</source>
          <year>2020</year>
          ,
          <article-title>CEUR-WS</article-title>
          .org,
          <year>2020</year>
          , pp.
          <fpage>79</fpage>
          -
          <lpage>80</lpage>
          . URL: http://ceur-ws.
          <source>org/</source>
          Vol-
          <volume>2658</volume>
          /paper10.pdf.
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>Q.</given-names>
            <surname>Xie</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Dai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E. H.</given-names>
            <surname>Hovy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Luong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Le</surname>
          </string-name>
          ,
          <article-title>Unsupervised Data Augmentation for Consistency Training</article-title>
          ,
          <source>in: NIPS</source>
          <year>2020</year>
          ,
          <year>2020</year>
          . URL: https://dl.acm.org/doi/10.5555/3495724.3496249.
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>U.</given-names>
            <surname>Yaseen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Langer</surname>
          </string-name>
          ,
          <article-title>Data Augmentation for Low-Resource Named Entity Recognition Using Backtranslation (</article-title>
          <year>2021</year>
          ). doi:
          <volume>10</volume>
          .48550/ARXIV.2108.11703.
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>A.</given-names>
            <surname>Keraghel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Benabdeslem</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Canita</surname>
          </string-name>
          ,
          <article-title>Data augmentation process to improve deep learning-based NER task in the automotive industry field</article-title>
          ,
          <source>in: IJCNN</source>
          <year>2020</year>
          ,
          <year>2020</year>
          , pp.
          <fpage>1</fpage>
          -
          <lpage>8</lpage>
          . doi:
          <volume>10</volume>
          .1109/IJCNN48605.
          <year>2020</year>
          .
          <volume>9207241</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>R.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Bing</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Cambria</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Si</surname>
          </string-name>
          ,
          <string-name>
            <surname>C.</surname>
          </string-name>
          <article-title>Miao, MELM: Data Augmentation with Masked Entity Language Modeling for Low-Resource NER (</article-title>
          <year>2022</year>
          )
          <fpage>2251</fpage>
          -
          <lpage>2262</lpage>
          . doi:
          <volume>10</volume>
          . 18653/v1/
          <year>2022</year>
          .
          <article-title>acl-long</article-title>
          .
          <volume>160</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>R.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Yu</surname>
          </string-name>
          ,
          <string-name>
            <surname>C. Zhang,</surname>
          </string-name>
          <article-title>SeqMix: Augmenting Active Sequence Labeling via Sequence Mixup</article-title>
          ,
          <source>in: EMNLP</source>
          <year>2020</year>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          ,
          <year>2020</year>
          , pp.
          <fpage>8566</fpage>
          -
          <lpage>8579</lpage>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2020</year>
          .emnlp-main.
          <volume>691</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>R.</given-names>
            <surname>Erd</surname>
          </string-name>
          , L. Feddoul, fusion
          <article-title>-jena/data-augmentation-ner-</article-title>
          <string-name>
            <surname>legal</surname>
          </string-name>
          ,
          <year>2022</year>
          . URL: https://github. com
          <article-title>/fusion-jena/data-augmentation-ner-legal.</article-title>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>