<!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>Team iimasnlp at PAN: Leveraging Graph Neural Networks and Large Language Models for Generative AI Authorship Verification</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Andric Valdez-Valenzuela</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Helena Gómez-Adorno</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Instituto de Investigaciones en Matemáticas Aplicadas y en Sistemas, UNAM</institution>
          ,
          <addr-line>Ciudad de México 04510</addr-line>
          ,
          <country country="MX">México</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Posgrado en Ciencia e Ingeniería de la Computación, Universidad Nacional Autónoma de México</institution>
          ,
          <addr-line>CDMX</addr-line>
          ,
          <country country="MX">México</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2024</year>
      </pub-date>
      <abstract>
        <p>Large language models (LLMs) have led to a surge in machine-generated content across various platforms, posing a challenge for humans to distinguish between machine-generated and human-written text. To address this, there is an urgent need for automated systems that can identify machine-generated content and mitigate related risks. In response, the PAN@CLEF, in collaboration with the Voight-Kampf Task (ELOQUENT Lab) [ 1][2][3], proposed the Generative AI Authorship Verification task. This study presents a novel model architecture integrating Graph Neural Networks (GNNs), pre-trained Language Models (LLMs), and stylometric features to classify text documents as human-generated or machine-generated. Our approach employs a two-path structure: the first path processes text documents through data augmentation, transforming them into co-occurrence graphs for GNN processing, while the second path extracts and fine-tunes embeddings using a BERT-BASE model along with stylometric features. These embeddings are combined to enhance classification accuracy and robustness. We also detail our data stratification strategy, which involves augmenting human-generated texts to balance the dataset. The efectiveness of our model is demonstrated through extensive evaluation metrics, achieving superior performance over baseline methods.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Generative AI</kwd>
        <kwd>Text Graph Representation</kwd>
        <kwd>Graph Neural Networks</kwd>
        <kwd>Text2graphAPI</kwd>
        <kwd>Large Language Models</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>Large language models (LLMs) have become widely available and easily accessible, increasing
machinegenerated content across various platforms, including Q&amp;A forums, social media, educational resources,
and academic settings. Recent advancements in LLM technology, like ChatGPT and GPT-4, enable these
models to produce coherent responses to most user inquiries, making them increasingly attractive for
replacing human labor in various applications. However, this accessibility has raised concerns about
potential misuse, such as generating fake news, impacting the financial services industry, afecting the
legal domain, and causing disruptions in educational settings. Given humans’ dificulty distinguishing
between machine-generated and human-written text, there is an urgent need to develop automated
systems capable of identifying machine-generated content to mitigate the associated risks.</p>
      <p>
        Motivated by these challenges, the PAN@CLEF [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ][
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] proposed a Generative AI Authorship
Verification task [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] in collaboration with the Voight-Kampf Task (ELOQUENT Lab). With years of experience
in a related but much broader field (authorship verification), they set out to answer whether this task
can be solved, starting with the simplest arrangement of a suitable task setup: Given two texts, one
authored by a human, one by a machine: pick out the human.
      </p>
    </sec>
    <sec id="sec-2">
      <title>2. Background</title>
      <p>
        In recent years, shared tasks focused on automatically detecting AI-generated text have risen, including
the prominent Autextification challenge [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ], which targets identifying text generated by models in
English and Spanish. Notable research from the Autextification-2023 competition includes: "I’ve Seen
Things You Machines Wouldn’t Believe: Measuring Content Predictability to Identify Automatically
Generated Text" [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. This system excelled in subtask 1 (diferentiating human- and machine-generated
text) by evaluating text "predictability" through grammatical accuracy, word frequency, and linguistic
patterns alongside a fine-tuned language model representation. Another remarkable work, "Generative
AI Text Classification using Ensemble LLM Approaches" [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ], achieved top performance in subtask
two using an ensemble neural model. It combined probabilities from various pre-trained language
models as features for a traditional machine learning classifier, ranking first in both English and Spanish
categories.
      </p>
      <p>
        Another exciting challenge task, SemEval-2024 Task-8 [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ], proposed three subtasks over two
paradigms of text generation: (1) full text when a considered text is entirely written by a human
or generated by a machine and (2) mixed text when a machine-generated text is refined by a human or a
human-written text paraphrased by a machine. These three subtasks are composed in the following way:
Subtask A is a binary classification task that focuses on identity if a given text was written by a human
or a machine; it is split into monolingual (English) and multilingual (Arabic, Russian, Chinese, etc).
Subtask B is a multi-class classification task identifying which specific LLM generates a given text among
six known options: Human-made, ChatGPT, Cohere, DaVinci, Bloomz, and Dolly. Finally, Subtask C,
given a mixed text, where the first part is human-written and the second part is machine-generated,
determines the boundary where the change occurs.
      </p>
    </sec>
    <sec id="sec-3">
      <title>3. System Overview</title>
      <p>This section describes the system overview of our approach: Model Architecture, Data Stratification,
and Graph Representation. Model Architecture lays out the structure and detailed workings that drive
our method. Data Stratification shows the partition and data augmentation process for the data. Graph
Representation explains the text-to-graph representation process.</p>
      <sec id="sec-3-1">
        <title>3.1. Data Stratification</title>
        <p>The dataset consists of a Training Set and a Validation Set for model training and evaluation (see Table
1). The Training Set includes 23,433 text documents, with 12,129 human and 11,304 machine-generated
texts. The Validation Set contains 5,654 text documents, evenly split between 2,827 human and 2,827
machine texts. Initially, there was a significant imbalance, with 14 machine-generated texts for every
human-generated text. To balance the dataset, text augmentation was applied to the human texts using
the back-translation method with a Large Language Model 1, along with techniques such as word
insertions, synonyms, substitutions, and deletions 2. This augmentation ensured a balanced dataset,
facilitating more efective training of models to distinguish between human and machine-generated
content.
1HuggingFace Models used: Helsinki-NLP/opus-mt-en-ROMANCE to translate from English to another language (Spanish,
French, etc.) and Helsinki-NLP/opus-mt-ROMANCE-en to back translate to enlish
2We used a python library called TextAttack: https://pypi.org/project/textattack/0.0.3.1/</p>
      </sec>
      <sec id="sec-3-2">
        <title>3.2. Model Architecture</title>
        <p>Figure 1 illustrates a dual-path architecture that classifies text documents as human-generated or
machine-generated. This architecture efectively integrates Graph Neural Networks (GNN) with
pretrained Language Models (LLMs) and stylometric features to enhance classification accuracy and
robustness.</p>
        <p>
          The top path of the architecture employs a Graph Neural Network (GNN) approach [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ]. It begins
with the input of text documents, which first undergo data augmentation specifically aimed at
humangenerated texts (see section 3.1). This augmentation process helps balance the dataset and improve
the model’s ability to diferentiate between human and machine-generated content. The augmented
texts are then transformed into co-occurrence graphs using the text2graphAPI [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ]3. In these graphs,
nodes represent words, and edges represent words’ co-occurrence, capturing the text’s structural
relationships. Following this transformation, node features are initialized, utilizing the contextualized
word embeddings extracted from the fine-tuned BERT LLM to provide a rich text representation [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ].
These co-occurrence graphs are subsequently processed by a GNN with a TransformerConv layer [
          <xref ref-type="bibr" rid="ref11">11</xref>
          ],
which generates graph document embeddings. These embeddings capture the complex relationships
and patterns within the text, which are then fed into a classification-dense network in combination
with stylometric features. This final dense network is responsible for classifying text documents as
human-generated or machine-generated based on the learned features.
        </p>
        <p>The bottom path of the architecture leverages LLMs and stylometric features to complement the
GNN approach. Like the top path, text documents undergo data augmentation, with specific techniques
applied to human texts to ensure a balanced dataset. In addition, stylometric features are extracted,
composed of linguistic and stylistic elements unique to each text. The stylo feature extracted includes
mainly text-document stats such as: mean word length, mean sentence length, and the standard
deviation of sentence length; furthermore, includes the counter of diferent punctuation marks such as
commas, semicolons, quotes, exclamations, dashes, etc; finally, includes some connector word such as:
and, buts, however, mores, this, etc. As an output, it generates a normalized stylometric feature vector
that contains all these metrics for each text document from the corpus.</p>
        <p>Concurrently, a pre-trained BERT-BASE model is fine-tuned on the text data, and CLS tokens are
extracted to obtain document-level embeddings. These embeddings provide a comprehensive
representation of the text at the document level. The architecture combines these CLS document embeddings
with the previously extracted stylometric features. These combined features are concatenated with the
GNN embeddings to form a unified representation that captures both the high-level semantic
information and the detailed stylistic nuances of the text. This concatenated embedding is fed into another
dense network, which performs the final classification into human-generated or machine-generated
categories.</p>
        <p>Finally, for each test case (pair of text: text1 and text2), it is required to output the ID of the input
text pair and a confidence score between 0.0 and 1.0. A score &lt; 0.5 means that text1 is believed to be
human-authored. A score &gt; 0.5 means that text2 is believed to be human-authored. A score of exactly
0.5 means the case is undecidable. To solve this within our architecture, as an output of our classification
layer, a soft score probability is obtained for the documents to belong to each class (between 0.0 and
1.0); if text1 is human-authored, apply the rule: 1 - prob_text1; if text2 is believed to be human-authored,
apply the rule: prob_text2; lastly, if the prediction is exactly 0.5 (or around an epsilon of 0.01) leave the
score as 0.5 which means the problem is indecidable.</p>
      </sec>
      <sec id="sec-3-3">
        <title>3.3. Graph Representation</title>
        <p>For the graph representation, We used the Co-Occurrence graph, where the words are represented as a
node, and the Co-Occurrence of two words within the text document is defined as an edge between
the words/nodes. As attributes/weights, edges have the frequency of co-occurrences between words in
the text document, and the point-wise mutual information (PMI) measure between each word-to-word
relation 4. As output, we will have one graph representation for each text document in the corpus.</p>
        <p>For instance, let’s take the following sentence (from one of the documents in the corpus): millions
in Texas lose power as the winter storm falls to -22c , represented in Figure 2. Each node in the graph
corresponds to a unique word from the text, such as "power," "lose," "texas," etc. These nodes are
connected by edges, which signify that the words co-occur within the same context or proximity in the
text (window size of 2 in this example). The frequency weight indicates how often the connected words
appeared together in the document. For example, an edge labeled "freq: 2" means that the two words it
connects appeared together twice. The PMI weight quantifies the strength of association between two
words, indicating how often the words co-occur more than would be expected by chance. A higher PMI
value denotes a stronger association. For instance, PMI values such as 6.08 or 7.40 suggest a significant
contextual relationship between the word pairs, even if they do not appear together frequently. This
metric helps highlight meaningful word associations that might not be immediately obvious from
frequency alone.</p>
        <p>Finally, we use the text graph representations for each document and apply an LLM-based node
feature initialization process. Subsequently, a GNN processes these graphs to obtain representations
that encapsulate semantic meanings, syntactic structures, and contextual information.</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Results</title>
      <p>4PMI measures the strength of association between two words by comparing their joint probability to the product of their
probabilities</p>
      <p>The six experimental approaches showcase strong performance overall. The
final-run4gnnllm_llmft_stylofeat-partitionB stands out with a consistent score of 0.992 across all metrics,
indicating highly reliable results. Similarly, final-run7-gnnllm_llmft_stylofeat-fullpartitionA
exhibits slightly higher performance in ROC-AUC (0.994) but a marginally lower Brier Score (0.987), with
an overall mean score of 0.99. final-run10-gnnllm_llmft_stylofeat-fullpartitionB also demonstrates
robust performance, achieving a ROC-AUC of 0.989 and a Brier Score of 0.984, resulting in an overall
mean of 0.987. Meanwhile, final-run8-gnnllm_stylofeat and final-run6-gnnllm_llmft_stylofeat
show slightly lower performances with mean scores of 0.974 and 0.97, respectively.</p>
      <p>Regarding the baselines, Binoculars perform comparably well, achieving an overall mean of 0.965
with a strong ROC-AUC (0.972) and F1 score (0.966). But, all of our approaches outperformed the
baseline score reported.</p>
      <p>On the other hand, Table 3 shows the summarized results averaged (arithmetic mean) over 10 variants
of the test dataset. Each dataset variant applies one potential technique to measure the robustness of
authorship verification approaches. In this evaluation, our best run
final-run4-gnnllm_llmft_stylofeatpartitionB achieved an score of 0.997</p>
      <p>Finally, Our submission scores achieved 14th out of 30 on the leaderboard with a ranking score of
0.727 overall test datasets. On the other hand, for part of the test datasets, this score had to be estimated
since the system failed to run on short texts (35 words or less).</p>
    </sec>
    <sec id="sec-5">
      <title>5. Conclusion</title>
      <p>This study explores the eficacy of advanced model architectures in diferentiating between
humangenerated and machine-generated text, addressing the growing concern of automated content
misidentification in various domains. We implemented an architecture that combines Graph Neural Networks
(GNNs) and pre-trained Language Models (LLMs) with stylometric features, showcasing superior
performance compared to the baselines proposed.</p>
      <p>Our experimental runs, particularly final-run4-gnnllm_llmft_stylofeat-partitionB and
final-run7gnnllm_llmft_stylofeat-fullpartitionA, consistently achieved good scores across multiple evaluation
metrics, significantly outperforming all baseline methods. These results afirm the robustness and
reliability of our approach in accurately identifying machine-generated text.</p>
      <p>Overall, our results highlight the promise of utilizing advanced GNN and LLM architectures and
extensive feature sets to tackle the issues arising from the surge in machine-generated content. Future
studies could enhance these approaches further and investigate their applicability across various
languages and settings. Also, diferent text graph representations and graph neural network architecture
should be tried with the LLM combination.</p>
    </sec>
    <sec id="sec-6">
      <title>Acknowledgments</title>
      <p>This paper has been supported by PAPIIT projects IN104424, TA101722, and CONAHCYT CF-2023-G-64.
Also, the authors thank CONAHCYT for the computing resources provided through the Deep Learning
Platform for Language Technologies of the INAOE Supercomputing Laboratory.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>A. A.</given-names>
            <surname>Ayele</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Babakov</surname>
          </string-name>
          ,
          <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>D.</given-names>
            <surname>Moskovskiy</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>N.</given-names>
            <surname>Rizwan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Rosso</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Schneider</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>E.</given-names>
            <surname>Stakovskii</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>X.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Wiegmann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. M.</given-names>
            <surname>Yimam</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="ref2">
        <mixed-citation>
          [2]
          <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>
            <given-names>L.</given-names>
            <surname>Dürlich</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Gogoulou</surname>
          </string-name>
          ,
          <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>
            <given-names>P.</given-names>
            <surname>Galuščáková</surname>
          </string-name>
          , A. 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="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>J.</given-names>
            <surname>Bevendorf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Wiegmann</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 2024</article-title>
          , in: G.
          <string-name>
            <given-names>F. N.</given-names>
            <surname>Ferro</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Galuščáková</surname>
          </string-name>
          , A. G. S. de Herrera (Eds.), Working Notes of CLEF 2024 -
          <article-title>Conference and Labs of the Evaluation Forum, CEUR-WS</article-title>
          .org,
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>A. M.</given-names>
            <surname>Sarvazyan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. Á.</given-names>
            <surname>González</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. Franco</given-names>
            <surname>Salvador</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Rangel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Chulvi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Rosso</surname>
          </string-name>
          , Overview of autextification at iberlef 2023:
          <article-title>Detection and attribution of machine-generated text in multiple domains</article-title>
          ,
          <source>in: Procesamiento del Lenguaje Natural</source>
          , Jaén, Spain,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>P.</given-names>
            <surname>Przybyła</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Duran-Silva</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Egea-Gómez</surname>
          </string-name>
          ,
          <article-title>I've seen things you machines wouldn't believe: Measuring content predictability to identify automatically-generated text</article-title>
          ,
          <source>in: Proceedings of the Iberian Languages Evaluation Forum (IberLEF</source>
          <year>2023</year>
          ).
          <source>CEUR Workshop Proceedings</source>
          , CEUR-WS, Jaén, Spain,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>H.</given-names>
            <surname>Abburi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Suesserman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Pudota</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Veeramani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Bowen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Bhattacharya</surname>
          </string-name>
          ,
          <article-title>Generative ai text classification using ensemble llm approaches</article-title>
          ,
          <source>arXiv preprint arXiv:2309.07755</source>
          (
          <year>2023</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Mansurov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Ivanov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Su</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Shelmanov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Tsvigun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Whitehouse</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O. M.</given-names>
            <surname>Afzal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Mahmoud</surname>
          </string-name>
          , G. Puccetti,
          <string-name>
            <given-names>T.</given-names>
            <surname>Arnold</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. F.</given-names>
            <surname>Aji</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Habash</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Gurevych</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Nakov</surname>
          </string-name>
          , Semeval
          <article-title>-2024 task 8: Multigenerator, multidomain, and multilingual black-box machine-generated text detection</article-title>
          ,
          <source>in: Proceedings of the 18th International Workshop on Semantic Evaluation, SemEval</source>
          <year>2024</year>
          , Mexico, Mexico,
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>K.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Ding</surname>
          </string-name>
          , S. C. Han,
          <article-title>Graph neural networks for text classification: a survey</article-title>
          ,
          <source>arXiv preprint arXiv:2304.11534</source>
          (
          <year>2023</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>A.</given-names>
            <surname>Valdez</surname>
          </string-name>
          , H. Gómez Adorno,
          <article-title>Text2graphapi a library to transform text documents into diferent graph representations</article-title>
          ,
          <source>Available at SSRN</source>
          <volume>4763799</volume>
          (????).
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>B.</given-names>
            <surname>Jin</surname>
          </string-name>
          , G. Liu, C. Han,
          <string-name>
            <given-names>M.</given-names>
            <surname>Jiang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Ji</surname>
          </string-name>
          , J. Han,
          <article-title>Large language models on graphs: A comprehensive survey</article-title>
          ,
          <source>arXiv preprint arXiv:2312.02783</source>
          (
          <year>2023</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Shi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Feng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Zhong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <article-title>Masked label prediction: Unified message passing model for semi-supervised classification</article-title>
          ,
          <year>2021</year>
          . arXiv:
          <year>2009</year>
          .03509.
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>M.</given-names>
            <surname>Fröbe</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Wiegmann</surname>
          </string-name>
          ,
          <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-list>
  </back>
</article>