<!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>Time for some German? Pre-Training a Transformer-based Temporal Tagger for German</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Satya Almasian</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Dennis Aumiller</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Michael Gertz</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Institute of Computer Science, Heidelberg University</institution>
          ,
          <addr-line>Heidelberg</addr-line>
          ,
          <country country="DE">Germany</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>Non-English languages are notorious for their lack of available resources, and temporal tagging is no exception. In this work, we explore transfer strategies to improve the quality of a German temporal tagger. From a model perspective, we employ a weakly-supervised pre-training strategy to stabilize the convergence of Transformer-based taggers. In addition, we also augment data with automatically translated English resources, which serve as an alternative to commonly used alignments of latent embedding spaces. With this, we provide preliminary empirical evidence that indicates the suitability of transfer approaches to other low-resourced languages: A small number of gold data coupled with an existing data set in a resource-rich language and a weak labeling baseline system may be su cient to boost performance.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Temporal tagging</kwd>
        <kwd>Weakly-supervised learning</kwd>
        <kwd>German</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        Annotated data has become an essential part of modern-day NLP approaches, but non-English
resources remain scarce. In the absence of data, it then becomes increasingly di cult to even
transfer existing approaches to a multilingual context. In this work, we particularly focus on
the task of Temporal Tagging, which serves a multitude of downstream applications in the
area of narrative extraction [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. For example, more accurate temporal tags can be utilized in
timeline summarization [
        <xref ref-type="bibr" rid="ref2 ref3">2, 3</xref>
        ] or event reasoning [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. For temporal tagging, too, the largest
resources exist without a doubt for English [
        <xref ref-type="bibr" rid="ref5 ref6 ref7 ref8">5, 6, 7, 8</xref>
        ]. While some non-English resources do
exist [
        <xref ref-type="bibr" rid="ref10 ref9">9, 10</xref>
        ], they are still scarce, and generally smaller than their English counterparts. Despite
attempts to approach the lack of language-speci c resources through the lens of multilingual
transfer learning [
        <xref ref-type="bibr" rid="ref11 ref12">11, 12</xref>
        ], Heideltime [
        <xref ref-type="bibr" rid="ref13 ref14">13, 14</xref>
        ], a rule-based approach extending to multiple
languages, remains state-of-the-art. Yet, rule-based approaches generally su er from a
precisionheavy tagging, since slight variations on patterns cannot be successfully detected. By applying
state-of-the-art neural models instead, such variations could be covered as well, increasing
the overall tagging performance. However, the lack of available data makes the training of
data-hungry neural models non-trivial. We illustrate a generic transfer pipeline with German
as an example of a lower-resource language. By using a combination of automatically labeled
data for pre-training and additional translated English data, we boost the amount of available
training data. With this augmented corpus, we are able to ne-tune Transformer models that
improve temporal tagging performance for German.
      </p>
    </sec>
    <sec id="sec-2">
      <title>2. Related Work</title>
      <p>
        The main reference point for temporal tagging of non-English resources is Heideltime [
        <xref ref-type="bibr" rid="ref13 ref14">13,
14</xref>
        ], which provides automatically transduced rules for other languages; the coverage varies
depending on the language’s syntactic structure. At the same time, they also provide
languagespeci c rules for a smaller set of languages, including German.
      </p>
      <p>
        As for datasets, this work relies on the KRAUTS corpus [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ], which consists of roughly 1,100
annotations of Tyrolian and German newspaper articles. WikiwarsDE [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ] is another
Germanspeci c resource, yet, the temporal annotations are not available in the current TIMEX3 format,
limiting their applicability for recent models.
      </p>
      <p>
        Approaches dealing with German include Lange et al. [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ], who experimented with
adversarially aligned embeddings. While their method beats the automatically translated rule set of
Heideltime, it falls short of the language-speci c rule set. With a similar strategy, Starý et al. [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ]
ne-tuned a multilingual version of BERT with OntoNotes data. Both works use KRAUTS data
for evaluation, and have the advantage of automatically scaling to several target languages,
however, at the cost of language-speci c performance.
      </p>
      <p>
        Another notable multilingual dataset is TimeBank [
        <xref ref-type="bibr" rid="ref16 ref17 ref18 ref19">16, 17, 18, 19</xref>
        ], which covers several languages
including French, Italian, Portuguese and Romanian. Taggers in low-resource settings are
generally limited, but do exist: TipSem [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ] and Annotador [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ] for Spanish, Bosque-T0 [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ]
and the work by Costa and Branco [
        <xref ref-type="bibr" rid="ref22">22</xref>
        ] for Portuguese, and PET [
        <xref ref-type="bibr" rid="ref23">23</xref>
        ] for Persian.
      </p>
    </sec>
    <sec id="sec-3">
      <title>3. A Transfer Pipeline for Temporal Tagging</title>
      <p>
        Temporal tagging is the task of identi cation of temporal expression, classi cation of the type
and sometimes normalization of temporal values. In the work, we focus on identi cation and
classi cation of expression in four classes de ned by TIMEX3 schema, namely DATE, TIME,
SET and DURATION. As previously mentioned, language-speci c resources tend to perform
better than multilingual approaches. Therefore, we set out to construct a language-speci c
German tagging approach with the help of Transformer-based language models [
        <xref ref-type="bibr" rid="ref24">24</xref>
        ]. We utilize
monolingual language models in this work, opposed to previously utilized multilingual networks.
Speci cally, Chan et al. [
        <xref ref-type="bibr" rid="ref25">25</xref>
        ] present several iterations of German-speci c Transformer networks;
we choose the best-performing model, which is based on the ELECTRA [26] architecture, namely
GELECTRA-large.
      </p>
      <p>
        However, successfully employing the Transformer networks requires more data than what is
available in KRAUTS dataset [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ]. For this purpose, we create a corpus of automatically tagged
news articles, using Heideltime’s German tagger. This provides around 500,000 temporal
expressions for an additional "pre-training step", exceeding the available German tagging data
by roughly 2,000 times, albeit at a lower guarantee of annotation quality.
We further experiment with automatically translated English data, based on the TempEval-3
corpus [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. Articles were automatically translated with the help of Google Translate1, and we
were able to retain about 90% of the original annotations in the German version. See Table 1
for a detailed comparison, including the tag distribution.
      </p>
    </sec>
    <sec id="sec-4">
      <title>4. Experiments</title>
      <p>For experimentation, we use the KRAUTS Dolomiten subset as the training set, and the Die Zeit
subset for testing. Further, all models were run on three NVIDIA A100 GPUs using the Adam
optimizer and linear weight decay. Pre-training was performed for 4 epochs, with a learning
rate of 1e-7 and batch size 16 on each GPU and gradient accumulation step of 4, which took
approximately 30 hours. Variants with automatically translated TempEval data were trained an
additional 8 epochs with batch size 16 and learning rate of 5e-5 on a single GPU before the nal
ne-tuning on Dolomiten for another 8 epochs. All metrics on ne-tuned models are averaged
for 3 di erent random seeds; pre-training was run once without pre-determined random seeds.
We use the o cial TempEval-3 script for computing results, which also works with German
texts. TempEval generally di erentiates between partial ("relaxed") and exact ("strict") tagging
overlap.</p>
      <sec id="sec-4-1">
        <title>4.1. Results</title>
        <p>
          Table 2 contains all available results. Note that the adversarially trained model by Lange et
al. [
          <xref ref-type="bibr" rid="ref11">11</xref>
          ] has transferred from English data, and seen no explicit German training data, which
explains its lower performance. The mBERT NER model [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ] does not perform type classi cation.
We identify Heideltime as the best-performing baseline system, where its rule-based nature
tends to favor precision over recall.
        </p>
        <p>To investigate the e ect of continued pre-training, we report results for both o -the-shelf
variants and additionally pre-trained models (denoted by "p"). Pre-training was performed
on the automatically labeled portion (HeideltimeDE train). "+ temp" denotes ne-tuning on
translated TempEval data, and "+ dolo" ne-tuning on Dolomiten data, respectively. For
netuning on both sets together, we rst train for 8 epochs on TempEval data, and then for another
8 epochs on Dolomiten.</p>
        <p>1translate.google.com, accessed: 2022-01-14
Overall, our best model for relaxed matching (86.13 F1) is GELECTRAp + temp + dolo. However,
it appears that the automatically translated data is somewhat misleading for strict matches;
GELECTRAp + dolo, which is only trained on Dolomiten, has the highest strict match, as well
as best type classi cation performance. Since the teacher, Heideltime, is precision-focused,
all pre-trained variants also carry slightly higher precision, implying that the choice of weak
labeler for pre-training directly a ects the ne-tuning performance as well. Variants without
pre-training are in comparison more recall-oriented. It is worth noting that even without any
ne-tuning and only pre-training, GELECTRAp manages to perform close to Heideltime in
terms of F1 scores, which also highlights the cross-domain performance of neural methods.
Translations of TempEval data have a deteriorating e ect on non-pre-trained models. A possible
explanation is that pre-training makes the model more stable and resilient to noisy inputs, which
is likely for automatic translation data. Overall, it can be observed that there is no singular
top-performing model across all metrics. Depending on user preferences, appropriate models
choices can then be made.</p>
        <p>We also include results of type classi cation. Note the highly uneven class distribution, which
is present in all datasets and makes prediction performance for rare classes a challenging
task. Accessing a larger corpora in pre-training also means more frequently encountering rare
class instances, which bene ts the type prediction in the nal evaluation. Correspondingly,
pre-trained models outperform their respective model counterparts without pre-training.
Additional training results with GottBERT [27] and GELECTRA-base were omitted for the sake
of brevity, but exhibited a worse performance than the presented models.</p>
      </sec>
      <sec id="sec-4-2">
        <title>4.2. Current Limitations</title>
        <p>Preliminary results indicate that our ne-tuned models are clearly outperforming the baseline
tagger in almost every metric. However, it should be noted that the performance without
pre-training is already quite good and close to the pre-trained variants. Given the cost of
pre-training, this should be considered as a potential trade-o .</p>
        <p>Further, we want to point out the high similarity between German and English. This is
particularly relevant for automatically translated resources, where it is much easier to obtain additional
high-quality annotations through automated translation.</p>
        <p>Finally, the approach still relies on existing resources for the nal ne-tuning, which includes
both existing monolingual models and datasets. However, we suspect multilingual models would
also be suitable after su cient task-speci c pre-training, which makes monolingual models
less of a requirement. As for data, the 500 tags used for ne-tuning seem already su cient to
learn a decent system on top of a base model, which is promising for other languages without
existing annotations.</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Conclusion and Future Work</title>
      <p>In this work, we have introduced a generic way to ne-tune language-speci c temporal taggers,
demonstrated at the example of a German tagger. While there are limitations to the current
approach, we successfully demonstrate surpassing the current state-of-the-art tagger for German,
which is a promising start.</p>
      <p>For future work, we are planning to investigate patterns of incorrect labels to determine areas
of improvement, and employ bootstrapping with semi-supervised learning to further increase
the tagging accuracy for precision-heavy model variants.
Computational Linguistics, Barcelona, Spain (Online), 2020, pp. 6788–6796. URL: https:
//aclanthology.org/2020.coling-main.598. doi:10.18653/v1/2020.coling-main.598.
[26] K. Clark, M. Luong, Q. V. Le, C. D. Manning, ELECTRA: pre-training text encoders as
discriminators rather than generators, in: 8th International Conference on Learning
Representations, ICLR 2020, Addis Ababa, Ethiopia, April 26-30, 2020, OpenReview.net,
2020. URL: https://openreview.net/forum?id=r1xMH1BtvB.
[27] R. Scheible, F. Thomczyk, P. Tippmann, V. Jaravine, M. Boeker, GottBERT: a pure German
Language Model, arXiv preprint arXiv:2012.02110 (2020).</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>R.</given-names>
            <surname>Campos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Dias</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. M.</given-names>
            <surname>Jorge</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Jatowt</surname>
          </string-name>
          ,
          <article-title>Survey of temporal information retrieval and related applications</article-title>
          ,
          <source>ACM Comput. Surv</source>
          .
          <volume>47</volume>
          (
          <year>2014</year>
          )
          <volume>15</volume>
          :
          <fpage>1</fpage>
          -
          <lpage>15</lpage>
          :
          <fpage>41</fpage>
          . URL: https://doi.org/10. 1145/2619088. doi:
          <volume>10</volume>
          .1145/2619088.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>P.</given-names>
            <surname>Hausner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Aumiller</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Gertz</surname>
          </string-name>
          ,
          <article-title>Time-centric exploration of court documents</article-title>
          , in: R.
          <string-name>
            <surname>Campos</surname>
            ,
            <given-names>A. M.</given-names>
          </string-name>
          <string-name>
            <surname>Jorge</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Jatowt</surname>
          </string-name>
          , S. Bhatia (Eds.),
          <source>Proceedings of Text2Story - Third Workshop on Narrative Extraction From Texts co-located with 42nd European Conference on Information Retrieval, Text2Story@ECIR</source>
          <year>2020</year>
          , Lisbon, Portugal, April 14th,
          <year>2020</year>
          [online only], volume
          <volume>2593</volume>
          <source>of CEUR Workshop Proceedings, CEUR-WS.org</source>
          ,
          <year>2020</year>
          , pp.
          <fpage>31</fpage>
          -
          <lpage>37</lpage>
          . URL: http://ceur-ws.
          <source>org/</source>
          Vol-
          <volume>2593</volume>
          /paper4.pdf.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>P.</given-names>
            <surname>Hausner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Aumiller</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Gertz</surname>
          </string-name>
          ,
          <article-title>Ticco: Time-centric content exploration</article-title>
          , in: M.
          <string-name>
            <surname>d'Aquin</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Dietze</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Hau</surname>
            , E. Curry,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Cudré-Mauroux</surname>
          </string-name>
          (Eds.),
          <source>CIKM '20: The 29th ACM International Conference on Information and Knowledge Management</source>
          , Virtual Event, Ireland,
          <source>October 19-23</source>
          ,
          <year>2020</year>
          , ACM,
          <year>2020</year>
          , pp.
          <fpage>3413</fpage>
          -
          <lpage>3416</lpage>
          . doi:
          <volume>10</volume>
          .1145/3340531.3417432.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>S.</given-names>
            <surname>Vashishtha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Poliak</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y. K.</given-names>
            <surname>Lal</surname>
          </string-name>
          ,
          <string-name>
            <surname>B. Van Durme</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. S.</given-names>
            <surname>White</surname>
          </string-name>
          ,
          <article-title>Temporal reasoning in natural language inference</article-title>
          ,
          <source>in: Findings of the Association for Computational Linguistics: EMNLP</source>
          <year>2020</year>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Online,
          <year>2020</year>
          , pp.
          <fpage>4070</fpage>
          -
          <lpage>4078</lpage>
          . URL: https:// aclanthology.org/
          <year>2020</year>
          . ndings-emnlp.
          <volume>363</volume>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2020</year>
          .findings-emnlp.
          <volume>363</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>M.</given-names>
            <surname>Verhagen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Gaizauskas</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Schilder</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hepple</surname>
          </string-name>
          , G. Katz, J. Pustejovsky, SemEval2007 Task 15:
          <article-title>TempEval Temporal Relation Identi cation</article-title>
          ,
          <source>in: Proceedings of the Fourth International Workshop on Semantic Evaluations (SemEval-2007)</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Prague, Czech Republic,
          <year>2007</year>
          , pp.
          <fpage>75</fpage>
          -
          <lpage>80</lpage>
          . URL: https: //www.aclweb.org/anthology/S07-1014.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>M.</given-names>
            <surname>Verhagen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Saurí</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Caselli</surname>
          </string-name>
          , J. Pustejovsky, SemEval-2010
          <source>task 13: TempEval-2, in: Proceedings of the 5th International Workshop on Semantic Evaluation</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Uppsala, Sweden,
          <year>2010</year>
          , pp.
          <fpage>57</fpage>
          -
          <lpage>62</lpage>
          . URL: https://www.aclweb. org/anthology/S10-1010.
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>N.</given-names>
            <surname>UzZaman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Llorens</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Derczynski</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Allen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Verhagen</surname>
          </string-name>
          , J. Pustejovsky, SemEval2013 Task 1:
          <fpage>TempEval</fpage>
          -3:
          <string-name>
            <given-names>Evaluating</given-names>
            <surname>Time</surname>
          </string-name>
          <string-name>
            <given-names>Expressions</given-names>
            , Events, and Temporal Relations, in: Second Joint Conference on Lexical and Computational
            <surname>Semantics</surname>
          </string-name>
          (*
          <source>SEM)</source>
          , Volume
          <volume>2</volume>
          :
          <source>Proceedings of the Seventh International Workshop on Semantic Evaluation (SemEval</source>
          <year>2013</year>
          ),
          <article-title>Association for Computational Linguistics</article-title>
          , Atlanta, Georgia, USA,
          <year>2013</year>
          , pp.
          <fpage>1</fpage>
          -
          <lpage>9</lpage>
          . URL: https://www.aclweb.org/anthology/S13-2001.
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>X.</given-names>
            <surname>Zhong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Sun</surname>
          </string-name>
          , E. Cambria,
          <article-title>Time Expression Analysis and Recognition Using Syntactic Token Types</article-title>
          and
          <article-title>General Heuristic Rules, in: Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics</article-title>
          (Volume
          <volume>1</volume>
          :
          <string-name>
            <surname>Long</surname>
            <given-names>Papers)</given-names>
          </string-name>
          ,
          <source>Association for Computational Linguistics</source>
          , Vancouver, Canada,
          <year>2017</year>
          , pp.
          <fpage>420</fpage>
          -
          <lpage>429</lpage>
          . URL: https://www. aclweb.org/anthology/P17-1039. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>P17</fpage>
          -1039.
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>J.</given-names>
            <surname>Strötgen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Minard</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Lange</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Speranza</surname>
          </string-name>
          ,
          <string-name>
            <surname>B. Magnini,</surname>
          </string-name>
          <article-title>KRAUTS: A german temporally annotated news corpus</article-title>
          ,
          <source>in: Proceedings of the Eleventh International Conference on Language Resources and Evaluation</source>
          ,
          <string-name>
            <surname>LREC</surname>
          </string-name>
          <year>2018</year>
          , Miyazaki, Japan, May 7-
          <issue>12</issue>
          ,
          <year>2018</year>
          ,
          <string-name>
            <given-names>European</given-names>
            <surname>Language Resources Association</surname>
          </string-name>
          (ELRA),
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>H.</given-names>
            <surname>Llorens</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Saquete</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Navarro</surname>
          </string-name>
          ,
          <article-title>Tipsem (english and spanish): Evaluating crfs and semantic roles in tempeval-2</article-title>
          , in:
          <source>Proceedings of the 5th International Workshop on Semantic Evaluation, SemEval@ACL</source>
          <year>2010</year>
          , Uppsala University, Uppsala, Sweden,
          <source>July 15-16</source>
          ,
          <year>2010</year>
          , The Association for Computer Linguistics,
          <year>2010</year>
          , pp.
          <fpage>284</fpage>
          -
          <lpage>291</lpage>
          . URL: https: //aclanthology.org/S10-1063/.
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>L.</given-names>
            <surname>Lange</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Iurshina</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Adel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Strötgen</surname>
          </string-name>
          ,
          <article-title>Adversarial Alignment of Multilingual Models for Extracting Temporal Expressions from Text</article-title>
          ,
          <source>in: Proceedings of the 5th Workshop on Representation Learning for NLP, Association for Computational Linguistics</source>
          , Online,
          <year>2020</year>
          , pp.
          <fpage>103</fpage>
          -
          <lpage>109</lpage>
          . URL: https://www.aclweb.org/anthology/
          <year>2020</year>
          .repl4nlp-
          <fpage>1</fpage>
          .14. doi:
          <volume>10</volume>
          .18653/ v1/
          <year>2020</year>
          .repl4nlp-
          <fpage>1</fpage>
          .
          <fpage>14</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>M.</given-names>
            <surname>Starý</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Neverilová</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Valcík</surname>
          </string-name>
          ,
          <article-title>Multilingual recognition of temporal expressions</article-title>
          ,
          <source>in: The 14th Workshop on Recent Advances in Slavonic Natural Languages Processing, RASLAN</source>
          <year>2020</year>
          ,
          <article-title>Brno (on-line)</article-title>
          ,
          <source>Czech Republic, December</source>
          <volume>8</volume>
          -
          <issue>10</issue>
          ,
          <year>2020</year>
          ,
          <string-name>
            <surname>Tribun</surname>
            <given-names>EU</given-names>
          </string-name>
          ,
          <year>2020</year>
          , pp.
          <fpage>67</fpage>
          -
          <lpage>78</lpage>
          . URL: http://nlp. .muni.cz/raslan/2020/paper2.pdf.
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>J.</given-names>
            <surname>Strötgen</surname>
          </string-name>
          , M. Gertz,
          <article-title>HeidelTime: High Quality Rule-Based Extraction and Normalization of Temporal Expressions</article-title>
          ,
          <source>in: Proceedings of the 5th International Workshop on Semantic Evaluation</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Uppsala, Sweden,
          <year>2010</year>
          , pp.
          <fpage>321</fpage>
          -
          <lpage>324</lpage>
          . URL: https://www.aclweb.org/anthology/S10-1071.
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>J.</given-names>
            <surname>Strötgen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Gertz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A Baseline</given-names>
            <surname>Temporal</surname>
          </string-name>
          <article-title>Tagger for all Languages</article-title>
          ,
          <source>in: Proceedings of the 2015 Conference on Empirical Methods in Natural Language Processing</source>
          , Association for Computational Linguistics, Lisbon, Portugal,
          <year>2015</year>
          , pp.
          <fpage>541</fpage>
          -
          <lpage>547</lpage>
          . URL: https://www. aclweb.org/anthology/D15-1063. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>D15</fpage>
          -1063.
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>J.</given-names>
            <surname>Strötgen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Gertz</surname>
          </string-name>
          ,
          <article-title>Wikiwarsde: A german corpus of narratives annotated with temporal expressions, in: Proceedings of the conference of the German society for computational linguistics and language technology</article-title>
          (GSCL
          <year>2011</year>
          ), Citeseer,
          <year>2011</year>
          , pp.
          <fpage>129</fpage>
          -
          <lpage>134</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>A.</given-names>
            <surname>Bittar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Amsili</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Denis</surname>
          </string-name>
          , L. Danlos,
          <article-title>French timebank: An iso-timeml annotated reference corpus, in: The 49th Annual Meeting of the Association for Computational Linguistics: Human Language Technologies</article-title>
          ,
          <source>Proceedings of the Conference</source>
          ,
          <volume>19</volume>
          -
          <fpage>24</fpage>
          June,
          <year>2011</year>
          , Portland, Oregon, USA - Short
          <string-name>
            <surname>Papers</surname>
          </string-name>
          , The Association for Computer Linguistics,
          <year>2011</year>
          , pp.
          <fpage>130</fpage>
          -
          <lpage>134</lpage>
          . URL: https://aclanthology.org/P11-2023/.
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>T.</given-names>
            <surname>Caselli</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V. B.</given-names>
            <surname>Lenzi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Sprugnoli</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Pianta</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Prodanof</surname>
          </string-name>
          ,
          <article-title>Annotating events, temporal expressions and relations in italian: the it-timeml experience for the ita-timebank</article-title>
          ,
          <source>in: Proceedings of the Fifth Linguistic Annotation Workshop</source>
          , LAW 2011, June 23-24,
          <year>2011</year>
          , Portland, Oregon, USA, The Association for Computer Linguistics,
          <year>2011</year>
          , pp.
          <fpage>143</fpage>
          -
          <lpage>151</lpage>
          . URL: https://aclanthology.org/W11-0418/.
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <given-names>F.</given-names>
            <surname>Costa</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Branco</surname>
          </string-name>
          ,
          <article-title>Timebankpt: A timeml annotated corpus of portuguese</article-title>
          ,
          <source>in: Proceedings of the Eighth International Conference on Language Resources and Evaluation</source>
          ,
          <string-name>
            <surname>LREC</surname>
          </string-name>
          <year>2012</year>
          , Istanbul, Turkey, May
          <volume>23</volume>
          -25,
          <year>2012</year>
          ,
          <string-name>
            <given-names>European</given-names>
            <surname>Language Resources Association</surname>
          </string-name>
          (ELRA),
          <year>2012</year>
          , pp.
          <fpage>3727</fpage>
          -
          <lpage>3734</lpage>
          . URL: http://www.lrec-conf.org/proceedings/lrec2012/summaries/246.html.
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <given-names>C.</given-names>
            <surname>Forascu</surname>
          </string-name>
          ,
          <string-name>
            <surname>D.</surname>
          </string-name>
          <article-title>Tu s, Romanian timebank: An annotated parallel corpus for temporal information</article-title>
          ,
          <source>in: Proceedings of the Eighth International Conference on Language Resources and Evaluation</source>
          ,
          <string-name>
            <surname>LREC</surname>
          </string-name>
          <year>2012</year>
          , Istanbul, Turkey, May
          <volume>23</volume>
          -25,
          <year>2012</year>
          ,
          <string-name>
            <given-names>European</given-names>
            <surname>Language Resources Association</surname>
          </string-name>
          (ELRA),
          <year>2012</year>
          , pp.
          <fpage>3762</fpage>
          -
          <lpage>3766</lpage>
          . URL: http://www.lrec-conf.org/proceedings/ lrec2012/summaries/770.html.
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <given-names>M.</given-names>
            <surname>Navas-Loro</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Rodríguez-Doncel</surname>
          </string-name>
          ,
          <article-title>Annotador: a temporal tagger for spanish</article-title>
          ,
          <source>J. Intell. Fuzzy Syst</source>
          .
          <volume>39</volume>
          (
          <year>2020</year>
          )
          <fpage>1979</fpage>
          -
          <lpage>1991</lpage>
          . URL: https://doi.org/10.3233/JIFS-179865. doi:
          <volume>10</volume>
          .3233/ JIFS-179865.
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <given-names>L.</given-names>
            <surname>Real</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Rademaker</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Chalub</surname>
          </string-name>
          , V. de Paiva,
          <article-title>Towards temporal reasoning in portuguese</article-title>
          ,
          <source>in: Proceedings of the LREC2018 Workshop Linked Data in Linguistics</source>
          ,
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [22]
          <string-name>
            <given-names>F.</given-names>
            <surname>Costa</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Branco</surname>
          </string-name>
          ,
          <article-title>Extracting temporal information from portuguese texts</article-title>
          ,
          <source>in: Computational Processing of the Portuguese Language - 10th International Conference, PROPOR</source>
          <year>2012</year>
          , Coimbra, Portugal,
          <source>April 17-20</source>
          ,
          <year>2012</year>
          . Proceedings, volume
          <volume>7243</volume>
          of Lecture Notes in Computer Science, Springer,
          <year>2012</year>
          , pp.
          <fpage>99</fpage>
          -
          <lpage>105</lpage>
          . URL: https://doi.org/10.1007/ 978-3-
          <fpage>642</fpage>
          -28885-2_
          <fpage>11</fpage>
          . doi:
          <volume>10</volume>
          .1007/978-3-
          <fpage>642</fpage>
          -28885-2\_
          <fpage>11</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [23]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Yaghoobzadeh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Ghassem-Sani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. A.</given-names>
            <surname>Mirroshandel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Eshaghzadeh</surname>
          </string-name>
          ,
          <article-title>Iso-timeml event extraction in persian text</article-title>
          ,
          <source>in: COLING</source>
          <year>2012</year>
          , 24th International Conference on Computational Linguistics,
          <source>Proceedings of the Conference: Technical Papers</source>
          ,
          <fpage>8</fpage>
          -
          <issue>15</issue>
          <year>December 2012</year>
          , Mumbai, India, Indian Institute of Technology Bombay,
          <year>2012</year>
          , pp.
          <fpage>2931</fpage>
          -
          <lpage>2944</lpage>
          . URL: https://aclanthology.org/C12-1179/.
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [24]
          <string-name>
            <given-names>A.</given-names>
            <surname>Vaswani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Shazeer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Parmar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Uszkoreit</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Jones</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. N.</given-names>
            <surname>Gomez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Kaiser</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Polosukhin</surname>
          </string-name>
          ,
          <article-title>Attention is all you need</article-title>
          , in: I. Guyon, U. von Luxburg, S. Bengio,
          <string-name>
            <given-names>H. M.</given-names>
            <surname>Wallach</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Fergus</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. V. N.</given-names>
            <surname>Vishwanathan</surname>
          </string-name>
          , R. Garnett (Eds.),
          <source>Advances in Neural Information Processing Systems 30: Annual Conference on Neural Information Processing Systems 2017, December 4-9</source>
          ,
          <year>2017</year>
          , Long Beach, CA, USA,
          <year>2017</year>
          , pp.
          <fpage>5998</fpage>
          -
          <lpage>6008</lpage>
          . URL: https://proceedings. neurips.cc/paper/2017/hash/3f5ee243547dee91fbd053c1c4a845aa-Abstract.html.
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          [25]
          <string-name>
            <given-names>B.</given-names>
            <surname>Chan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Schweter</surname>
          </string-name>
          , T. Möller,
          <article-title>German's next language model</article-title>
          ,
          <source>in: Proceedings of the 28th International Conference on Computational Linguistics</source>
          , International Committee on
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>