<!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>
      <journal-title-group>
        <journal-title>Conference and Labs of the Evaluation Forum, September</journal-title>
      </journal-title-group>
    </journal-meta>
    <article-meta>
      <title-group>
        <article-title>BaselineAvengers at PAN 2024: Often-Forgotten Baselines for LLM-Generated Text Detection</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Ludwig Lorenz</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Funda Zeynep Aygüler</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Ferdinand Schlatt</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Nailia Mirzakhmedova</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Bauhaus-Universität Weimar</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Germany</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Friedrich-Schiller-Universität Jena</string-name>
        </contrib>
      </contrib-group>
      <pub-date>
        <year>2024</year>
      </pub-date>
      <volume>0</volume>
      <fpage>9</fpage>
      <lpage>12</lpage>
      <abstract>
        <p>The rapid advancements of Large Language Models (LLMs) make it increasingly challenging to distinguish between human-written and machine-generated texts, which raises concerns regarding their potential misuse. This paper describes our submission to the PAN: Generative AI Authorship 2024 verification task, which involves identifying the human-authored text from a pair of texts, one written by a human and the other by an LLM. Our approach is based on the assumption that LLMs use a distinct vocabulary. We propose a simple and interpretable method using non-neural machine learning classifiers with lexical features. We evaluate several classification models and feature sets on a validation split and find logistic regression and SVM models using tf-idf feature vectors to be highly efective. Our submissions ofer a more efective alternative to all baseline approaches while also being more eficient and interpretable.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Authorship verification</kwd>
        <kwd>Logistic Regression</kwd>
        <kwd>Tf-Idf Vectorizer</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        With the rapid advancements of Large Language Models (LLMs), distinguishing between human-written
and machine-generated texts becomes more and more challenging. As a result, the need for reliable
authorship verification methods becomes even more pressing. The ability to distinguish between
human-written and machine-generated texts is crucial for various applications, such as plagiarism
detection [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ], forensic linguistics [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], and content moderation [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. Multiple approaches have been
proposed to address this problem, including complex feature engineering and stylometric analysis,
linguistic analysis, and machine learning-based methods [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. However, the increasing sophistication
of LLMs poses a significant challenge to existing authorship verification methods. In response to this
challenge, PAN [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] introduced the Voight-Kampf Generative AI Authorship Verification task to test the
feasibility of distinguishing between human-written and LLM-generated texts [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ].
      </p>
      <p>
        In this paper, we present our submission to the PAN shared task, where we address the generative
authorship verification problem using non-neural machine learning classifiers based on lexical features.
Our decision to employ non-neural models is motivated by the observation that simple models are often
overlooked in recent research, despite their proven efectiveness and their ability to serve as eficient
baselines for comparison with more complex models [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. Moreover, our emphasis on lexical features is
based on the hypothesis that LLMs use a distinct vocabulary, which may be suficient to diferentiate
between human-authored and machine-generated texts.
      </p>
      <p>In our work, we experimented with three classification models and two lexical feature sets. We
found logistic regression and SVM models using tf-idf feature vectors are highly efective for the
task. Motivated by the performance of our approach, we conducted a qualitative analysis of the most
significant lexical features to test our hypothesis that LLMs employ a distinct vocabulary. Our analysis
revealed that there is a small set of words that can indicate whether a text is written by an LLM. Overall,
our approach ofers a more efective alternative to all baseline approaches while also being more eficient
and interpretable.</p>
      <p>The remainder of this paper is structured as follows. In Section 2, we provide background information
on the PAN: Generative AI Authorship Verification task and review the related work. In Section 3, we
describe our system and the components of our submission. In Section 4, we present the results of
our submission. Section 5 provides a qualitative analysis of the most important lexical features. We
conclude with a discussion of our results in Section 6.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Background</title>
      <p>Task Description The PAN: Generative AI Authorship Verification task is organized in collaboration
with the Voight-Kampf Task at the ELOQUENT Lab in a builder-breaker style. PAN participants build
systems to tell human and machine-generated texts apart, while ELOQUENT participants investigate
novel text generation and obfuscation methods to avoid detection. The task is defined as follows:</p>
      <p>Given two texts, one authored by a human, one by a machine: pick out the human.</p>
      <p>More formally, given a pair of texts (1, 2), one of which is written by a human and the other by
an LLM, the system must output a confidence score  ∈ [0.0, 1.0]. A score  &lt; 0.5 indicates that
text 1 is believed to be human-authored, while a score  &gt; 0.5 indicates that text 2 is believed to be
human-authored. A score of exactly 0.5 means the case is undecidable.</p>
      <p>Dataset The task participants were provided with a training dataset of 1,359 U.S. news articles. To
ensure that the articles were human-authored, the task organizers collected the articles from Google
News, focusing on the period before the release of GPT-3.5. The articles were summarized using
GPT-4-Turbo, and the summaries were used as input for 13 downstream LLMs to generate new articles.
The dataset consists of pairs of articles, one human-authored and one LLM-generated, and is split into
training, validation, and test sets.</p>
      <p>To further test the robustness of submissions, the task organizers provided additional test datasets,
each applying a diferent obfuscation technique to the original test dataset. The obfuscation techniques
include switching the text encoding, prompting the LLMs to generate German instead of English, using
contrastive decoding, cropping the text to 35 words, etc. In total, 65 diferent test datasets were created
by obfuscation, with ELOQUENT providing another five.</p>
    </sec>
    <sec id="sec-3">
      <title>3. System Overview</title>
      <p>Scoring Function As follows from the task description (cf. Section 2), the generative authorship
verification task is formulated as a pairwise classification problem. Given a pair of texts (1, 2), the
goal is to determine which text is human-authored. However, we approach this task as a pointwise
binary classification problem. That is, given a text , we aim to predict the probability  (human|)
that the text is human-authored.</p>
      <p>By definition, the probability  (human|) is equal to 1 −  (LLM|). Given that we need to predict
the probability that 1 is human-authored while taking into account 2, we average the probabilities of
the first text being written by a human and the second text not being written by a human to obtain the
ifnal score (human|1):
(human|1) =
 (human|1) + 1 −  (LLM|2)
2
(1)
Feature Extraction To capture the distinctive vocabulary of LLM-generated texts, we use a
bag-ofwords model to represent the texts. We experiment with two feature sets: term frequencies and tf-idf
values for all tokens in the training dataset.</p>
      <p>Classification Models We experiment with three classifiers: Multinomial Naive Bayes, logistic
regression, and a support vector machine (SVM) with a linear kernel. We test the classifiers with both
term frequencies and tf-idf values to identify the most efective model and feature combination.
Model and Feature Selection To evaluate the performance of the diferent models and feature sets,
we use 100 samples from the training dataset as a validation split. The results of the validation are used
to select the most efective model and feature combination.</p>
      <p>Table 1 shows the accuracy achieved on the validation split for each model. Overall, logistic regression
and SVM are more efective than multinomial Naive Bayes. The diferences in efectiveness for diferent
feature sets for logistic regression and SVM are minimal. Interestingly, the performance of multinomial
naive Bayes is significantly better using raw term frequencies compared to tf-idf values.</p>
    </sec>
    <sec id="sec-4">
      <title>4. Results</title>
      <p>
        Evaluation Setup The PAN: Generative AI Authorship Verification task employed the TIRA platform
[
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] to ensure the reproducibility and comparability of submissions. The platform provides a standardized
environment for running submissions and evaluates the submissions using the following metrics:
• ROC-AUC: The area under the ROC (Receiver Operating Characteristic) curve
• Brier: The complement of the Brier score (mean squared loss)
• C@1: A modified accuracy score that assigns non-answers (score = 0.5) the average accuracy of
the remaining cases
• F1: The harmonic mean of precision and recall
• F0.5u: A modified F0.5 measure (precision-weighted F measure) that treats non-answers (score =
0.5) as false negatives
• The arithmetic mean of all the metrics above.
      </p>
      <p>The arithmetic mean of all metrics is used to rank the submissions.</p>
      <p>
        Baselines The task organizers provided oficial baselines for comparison, which are based on the
performance of various approaches to the task of authorship verification. The baselines include a
simple text length classifier, PPMd Compression-based Cosine [
        <xref ref-type="bibr" rid="ref9">9, 10</xref>
        ], Authorship Unmasking [11, 12],
Binoculars [13], DetectLLM LRR and NPR [14], and DetectGPT [15].
      </p>
      <p>Evaluation Results Table 2 presents the evaluation results of our submissions to the task, along with
the oficial baselines and summary statistics of all submissions. Our best performing submission (SVM)
outperforms all oficial baselines across all metrics, with the other two submissions (Multinomial Naive
Bayes and Logistic Regression) not outperforming only the Binoculars baseline for the algorithmic
mean of all metrics (0.965 vs. 0.956 and 0.958 respectively).</p>
      <p>Table 3 shows the summarized results averaged (arithmetic mean) over 10 obfuscated variants of
the test dataset. Each dataset variant applies one potential technique to measure the robustness of
authorship verification approaches (cf. Section 2). The results show that all our submissions are robust
to the obfuscation techniques, as the performance does not drop significantly compared to the baseline
approaches. For example, the minimum achieved score for our best submission (SVM) is 0.832, while
the minimum score for the best baseline (Binoculars) is 0.342.</p>
      <p>Overall, our approach demonstrates that simple and interpretable models can be highly efective
for the task of generative authorship verification. The results suggest that the distinctive vocabulary
used by LLMs can indeed be efectively captured using simple lexical features and machine learning
classifiers. Moreover, our submissions showed to be robust to obfuscation techniques, making them a
promising alternative to more complex and computationally expensive methods.
litrcea itrcpoanem izsphaedem licscuonon ittsnga lidnehea rrscsedoeun iiszhpagnem liitsghhhg liiitghhgnhg llscgneeah ittcenommm iiiftcsangn irreendm liitghedhhg rsseeaum iiiltscnoapm itsdam rssxeedep ttsdae iszshaeepm rseuen ilircsneee tttsenaem lcyage
soend isad lirreae irnognm itshng tsep onw itb oga tgo syunda tfrneanoo sanw ifryad indd skeda tsyeuad yoandm llryea ysa troew tryshdau sysa syedneadw ltdo</p>
    </sec>
    <sec id="sec-5">
      <title>5. Qualitative Analysis</title>
      <p>In addition to the quantitative evaluation of our submissions, we conducted a qualitative analysis of the
most important lexical features identified by the models. This analysis aims to highlight key tokens
that contribute to distinguishing between human-written and LLM-generated texts.</p>
      <p>The implementation of the multinomial Naive Bayes model allows us to extract the log
probabilities of each token belonging to the human-written and LLM-generated classes. By comparing these
probabilities, we can identify the tokens that contribute most to the classification decision. We use the
following equation to calculate the diference in log probabilities for each token  in the feature set:
log_dif () = log( (|LLM)) − log( (|human))
(2)</p>
      <p>The log diference values are then sorted in descending order to identify the tokens with the largest
diferences. The resulting values are interpreted as the importance of each token in distinguishing
between human-written and LLM-generated texts. Positive values indicate higher probabilities for
LLMgenerated texts, while negative values indicate higher probabilities for human-written texts. Figure 1
presents the top 50 tokens with the largest diferences in log probabilities for the multinomial Naive
Bayes model. Here, we observe that LLM-generated texts frequently use specific terms such as “article”,
“importance”, “emphasized”, “context”, and “despite”. These terms often relate to structured and formal
writing, which is often characteristic of LLM-generated content. On the other hand, human-written
texts show a higher probability of tokens related to everyday language and temporal expressions such
as “told”, “says”, “asked”, “wrote”, and “really”. These tokens indicate a more narrative and less formal
style typical of human writing. The frequent use of days of the week such as “Wednesday”, “Thursday”,
and “Friday” and terms like “afternoon” and “morning” in human-written texts can be attributed to their
common use in chronological events or planning. Humans often refer to specific days when recounting
events, discussing plans, or setting contexts within their narratives. This is particularly relevant in
our news articles dataset, where providing temporal context is essential for accurate and engaging
reporting. The word “told” is particularly prominent in human-written texts, as it is frequently used in
direct and indirect speech, which is also common in news articles. In contrast, LLM-generated texts
often prioritize structured content delivery and formal exposition over narrative elements, resulting in
frequent use of terms such as “emphasized”, “stating”, and “highlights”. The term “conclusion” is also
prevalent in LLM-generated texts, indicating a structured and formal writing style that often includes a
summary or final remarks, which is uncommon in human-written news articles.</p>
      <p>significant
article
importance
despite
safety
incident
expressed
emphasized
challenges
stating
actions
ensure
potential
conclusion
efforts
stated
concerns
continues
ongoing
impact</p>
      <p>Logistic Regression
significant
despite
importance
expressed
emphasized
stating
continues
actions
conclusion
ensure
incident
challenges
support
individuals
ongoing
stated
commitment
highlighted
article
expected
0.0
0.5
1.0
1.5
2.0
2.5
0.0
0.5
1.0
1.5
2.0
2.5</p>
    </sec>
    <sec id="sec-6">
      <title>6. Conclusion</title>
      <p>In this paper, we presented our submission to the PAN: Generative AI Authorship Verification task. Our
approach is based on the assumption that LLMs use a particular vocabulary, which can be captured
using lexical features. We experiment with three classifiers and two feature sets to identify the most
efective model and feature combination. Our results show that logistic regression and SVM models
using tf-idf feature vectors are highly efective for the task. We find that our submissions outperform
all oficial baselines, demonstrating that simple and interpretable models can be more efective than
complex and computationally expensive methods. Our qualitative analysis of the most important
lexical features confirms that LLM-generated texts often contain terms distinct from human-written
texts, which can be efectively captured using lexical features. The robustness of our submissions to
obfuscation techniques further highlights the efectiveness of our approach. Overall, our results ofer a
more efective alternative to all baseline approaches while also being more eficient and interpretable.</p>
    </sec>
    <sec id="sec-7">
      <title>Acknowledgments</title>
      <p>This work originates from a programming assignment from the “Introduction to Natural Language
Processing” course at Bauhaus-Universität Weimar during the summer term of 2024. We would like to
thank the teaching staf who recognized the potential of our approach and encouraged us to participate
in the PAN task. Together we turned these ideas into writing.
vectors, in: Data Compression Conference (DCC’06), 2006, pp. 332–341. doi:10.1109/DCC.2006.
13.
[10] O. Halvani, C. Winter, L. Graner, On the usefulness of compression models for authorship
verification, in: Proceedings of the 12th International Conference on Availability, Reliability
and Security, ARES ’17, Association for Computing Machinery, New York, NY, USA, 2017. URL:
https://doi.org/10.1145/3098954.3104050. doi:10.1145/3098954.3104050.
[11] M. Koppel, J. Schler, Authorship verification as a one-class classification problem, in: Proceedings
of the Twenty-First International Conference on Machine Learning, ICML ’04, Association for
Computing Machinery, New York, NY, USA, 2004, p. 62. URL: https://doi.org/10.1145/1015330.
1015448. doi:10.1145/1015330.1015448.
[12] J. Bevendorf, B. Stein, M. Hagen, M. Potthast, Generalizing unmasking for short texts, in:
J. Burstein, C. Doran, T. Solorio (Eds.), Proceedings of the 2019 Conference of the North American
Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume
1 (Long and Short Papers), Association for Computational Linguistics, Minneapolis, Minnesota,
2019, pp. 654–659. URL: https://aclanthology.org/N19-1068. doi:10.18653/v1/N19-1068.
[13] A. Hans, A. Schwarzschild, V. Cherepanova, H. Kazemi, A. Saha, M. Goldblum, J. Geiping, T.
Goldstein, Spotting llms with binoculars: Zero-shot detection of machine-generated text, 2024. URL:
https://arxiv.org/abs/2401.12070. arXiv:2401.12070.
[14] J. Su, T. Y. Zhuo, D. Wang, P. Nakov, Detectllm: Leveraging log rank information for zero-shot
detection of machine-generated text, 2023. URL: https://arxiv.org/abs/2306.05540. arXiv:2306.05540.
[15] G. Bao, Y. Zhao, Z. Teng, L. Yang, Y. Zhang, Fast-detectgpt: Eficient zero-shot detection of
machinegenerated text via conditional probability curvature, 2024. URL: https://arxiv.org/abs/2310.05130.
arXiv:2310.05130.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Stein</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Barrón-Cedeño</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Rosso</surname>
          </string-name>
          ,
          <article-title>An evaluation framework for plagiarism detection</article-title>
          , in: C.
          <string-name>
            <surname>-R. Huang</surname>
          </string-name>
          , D. Jurafsky (Eds.),
          <year>Coling 2010</year>
          : Posters, Coling 2010
          <string-name>
            <given-names>Organizing</given-names>
            <surname>Committee</surname>
          </string-name>
          , Beijing, China,
          <year>2010</year>
          , pp.
          <fpage>997</fpage>
          -
          <lpage>1005</lpage>
          . URL: https://aclanthology.org/C10-2115.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>V.</given-names>
            <surname>Guillén-Nieto</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Stein</surname>
          </string-name>
          ,
          <article-title>Language as evidence: Doing forensic linguistics</article-title>
          , Springer Nature,
          <year>2022</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>V. U.</given-names>
            <surname>Gongane</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. V.</given-names>
            <surname>Munot</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. D.</given-names>
            <surname>Anuse</surname>
          </string-name>
          ,
          <article-title>Detection and moderation of detrimental content on social media platforms: current status and future directions</article-title>
          ,
          <source>Social Network Analysis and Mining</source>
          <volume>12</volume>
          (
          <year>2022</year>
          )
          <fpage>129</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>E.</given-names>
            <surname>Stamatatos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Kestemont</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Kredens</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Pezik</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Heini</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Bevendorf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Stein</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          ,
          <source>Overview of the Authorship Verification Task at PAN</source>
          <year>2022</year>
          , in: G. Faggioli,
          <string-name>
            <given-names>N.</given-names>
            <surname>Ferro</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Hanbury</surname>
          </string-name>
          , M. Potthast (Eds.),
          <source>CLEF 2022 Labs and Workshops</source>
          , Notebook Papers, volume
          <volume>3180</volume>
          <source>of CEUR Workshop Proceedings, CEUR-WS.org</source>
          ,
          <year>2022</year>
          . URL: https://ceur-ws.
          <source>org/</source>
          Vol-
          <volume>3180</volume>
          /paper-184.pdf.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>J.</given-names>
            <surname>Bevendorf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X. B.</given-names>
            <surname>Casals</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Chulvi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Dementieva</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Elnagar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Freitag</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Fröbe</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Korenčić</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Mayerl</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Mukherjee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Panchenko</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Rangel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Rosso</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Smirnova</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Stamatatos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Stein</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Taulé</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Ustalov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Wiegmann</surname>
          </string-name>
          , E. Zangerle,
          <article-title>Overview of PAN 2024: Multi-Author Writing Style Analysis, Multilingual Text Detoxification, Oppositional Thinking Analysis, and Generative AI Authorship Verification</article-title>
          , in: L.
          <string-name>
            <surname>Goeuriot</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Mulhem</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          <string-name>
            <surname>Quénot</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Schwab</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <string-name>
            <surname>Soulier</surname>
          </string-name>
          ,
          <string-name>
            <surname>G. M. D. Nunzio</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Galuščáková</surname>
          </string-name>
          ,
          <string-name>
            <surname>A. G. S. de Herrera</surname>
          </string-name>
          , G. Faggioli, N. Ferro (Eds.),
          <source>Experimental IR Meets Multilinguality, Multimodality, and Interaction. Proceedings of the Fifteenth International Conference of the CLEF Association (CLEF</source>
          <year>2024</year>
          ), Lecture Notes in Computer Science, Springer, Berlin Heidelberg New York,
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>J.</given-names>
            <surname>Bevendorf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Wiegmann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Karlgren</surname>
          </string-name>
          ,
          <string-name>
            <surname>L. D</surname>
          </string-name>
          <article-title>"urlich</article-title>
          , E. Gogoulou,
          <string-name>
            <given-names>A.</given-names>
            <surname>Talman</surname>
          </string-name>
          , E. Stamatatos,
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Stein</surname>
          </string-name>
          ,
          <article-title>Overview of the “Voight-Kampf” Generative AI Authorship Verification Task at PAN</article-title>
          and
          <article-title>ELOQUENT 2024</article-title>
          , in: G. Faggioli,
          <string-name>
            <given-names>N.</given-names>
            <surname>Ferro</surname>
          </string-name>
          ,
          <string-name>
            <surname>P.</surname>
          </string-name>
          <article-title>Galušč'akov'a, A</article-title>
          . G. S. de Herrera (Eds.),
          <source>Working Notes of CLEF 2024 - Conference and Labs of the Evaluation Forum, CEUR Workshop Proceedings, CEUR-WS.org</source>
          ,
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>Y.-C.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.-A.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <surname>J.-J. Liu</surname>
          </string-name>
          ,
          <string-name>
            <surname>C.-J. Lin</surname>
          </string-name>
          ,
          <article-title>Linear classifier: An often-forgotten baseline for text classification</article-title>
          , in: A.
          <string-name>
            <surname>Rogers</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Boyd-Graber</surname>
          </string-name>
          , N. Okazaki (Eds.),
          <source>Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume</source>
          <volume>2</volume>
          :
          <string-name>
            <surname>Short</surname>
            <given-names>Papers)</given-names>
          </string-name>
          ,
          <source>Association for Computational Linguistics</source>
          , Toronto, Canada,
          <year>2023</year>
          , pp.
          <fpage>1876</fpage>
          -
          <lpage>1888</lpage>
          . URL: https://aclanthology. org/
          <year>2023</year>
          .acl-short.
          <volume>160</volume>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2023</year>
          .acl-short.
          <volume>160</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <surname>M. Fr</surname>
          </string-name>
          <article-title>"obe, M. Wiegmann</article-title>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Kolyada</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Grahm</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Elstner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Loebe</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hagen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Stein</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Potthast</surname>
          </string-name>
          ,
          <article-title>Continuous Integration for Reproducible Shared Tasks with TIRA.io</article-title>
          , in: J.
          <string-name>
            <surname>Kamps</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <string-name>
            <surname>Goeuriot</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          <string-name>
            <surname>Crestani</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Maistro</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          <string-name>
            <surname>Joho</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          <string-name>
            <surname>Davis</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Gurrin</surname>
            ,
            <given-names>U.</given-names>
          </string-name>
          <string-name>
            <surname>Kruschwitz</surname>
            ,
            <given-names>A</given-names>
          </string-name>
          . Caputo (Eds.),
          <source>Advances in Information Retrieval. 45th European Conference on IR Research (ECIR</source>
          <year>2023</year>
          ), Lecture Notes in Computer Science, Springer, Berlin Heidelberg New York,
          <year>2023</year>
          , pp.
          <fpage>236</fpage>
          -
          <lpage>241</lpage>
          . doi:
          <volume>10</volume>
          .1007/ 978-3-
          <fpage>031</fpage>
          -28241-6_
          <fpage>20</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>D.</given-names>
            <surname>Sculley</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Brodley</surname>
          </string-name>
          ,
          <article-title>Compression and machine learning: a new perspective on feature space</article-title>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>