<!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>From Nearest Neighbors to LLMs: A Hybrid Zero-Shot Approach to Multi-Label Classification</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Konstantinos Bougiatiotis</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Georgios Paliouras</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Department of Informatics and Telecommunications, National and Kapodistrian University</institution>
          ,
          <addr-line>Athens</addr-line>
          ,
          <country country="GR">Greece</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Institute of Informatics and Telecommunications, National Center for Scientific Research “Demokritos”</institution>
          ,
          <addr-line>Athens</addr-line>
          ,
          <country country="GR">Greece</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>This paper presents our approach for the FoRC4CL shared task of NSLP 2025, which aims to classify computational linguistics publications into a predefined three-tiered taxonomy of 181 categories. We explore various strategies, including -Nearest Neighbors (-NN) on sentence embeddings, graph neural networks, and incorporating Large Language Models (LLMs) for label refinement in a zero-shot scenario. Our best-performing approach involves using a -NN model to fetch candidate labels, followed by an LLM model for prediction. We achieve a macro F1-score of 0.661 on the public test leaderboard, surpassing the nearest competitor by 20%. Our results demonstrate that a retrieval-enhanced LLM-based zero-shot approach, with a posteriori enforced hierarchical consistency, is a feasible solution for this task.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Multi-label classification</kwd>
        <kwd>Hierarchical classification</kwd>
        <kwd>Large Language Models</kwd>
        <kwd>Graph Neural Networks</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>1. -Nearest neighbors (-NN) with Sentence Embeddings: Retrieving candidate labels based on
semantic similarity of texts.
2. Graph Neural Networks for Text Classification: Representing papers as nodes in a -NN distance
graph and modeling the task as multi-label node classification.
3. Zero-Shot Classification using Large Language Models (LLMs): Using an LLM to select the labels
while enforcing hierarchy constraints based on Nearest Neighbors models.</p>
      <p>Our best-performing approach involves a two-stage pipeline. First, candidate labels are retrieved
using a -NN index based on sentence embeddings, and second, an LLM refines the predictions while
ensuring hierarchical validity. Compared to traditional approaches, this method improves classification
performance by leveraging both local similarity-based retrieval and the global reasoning capabilities of
LLMs.
2nd International Workshop on Natural Scientific Language Processing and Research Knowledge Graphs (NSLP 2025), co-located
with ESWC 2025, June 01–02, 2025, Portorož, Slovenia
* Corresponding author.
$ kbogas@di.uoa.gr (K. Bougiatiotis)
0000-0002-1910-2758 (K. Bougiatiotis); 0000-0001-9629-2367 (G. Paliouras)</p>
      <p>© 2025 Copyright © 2025 for this paper by its authors. Use permitted under Creative Commons License Attribution 4.0 International (CC BY 4.0).</p>
      <p>The rest of this paper is structured as follows: Section 2 discusses related work, and Section 3 describes
the dataset used in the shared task. Section 4 outlines the models created for this task, followed by the
evaluation results and discussion in Section 5. Finally, we conclude with future directions in Section 61.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Related Work</title>
      <p>
        Hierarchical multi-label text classification (HMTC) assigns documents to multiple categories arranged
in a hierarchy, posing unique challenges due to label dependencies and the hierarchical structure.
Traditional methods, such as tree-based approaches like BONSAI [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] and PARABEL [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], have been
widely used to address the extreme multi-label classification (XMLC) problem. Building upon this
foundation, models like X-Transformer [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] introduce innovations such as X-Linear and XR-Transformers,
which recursively fine-tune pre-trained transformers for improved performance. Specifically for this
task, the weak X-Transformer [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] was introduced in the previous FoRC4CL shared task.
      </p>
      <p>
        Other recent advancements have explored the integration of Graph Neural Networks (GNNs) to
capture complex relationships in HMTC tasks. For instance, the Hierarchical Graph-Based Label
Propagation (HGBL) model constructs a heterogeneous graph of the entire corpus and employs Graph
Convolutional Networks (GCNs) to learn document representations, efectively capturing word
order and semantic relationships [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. Similarly, the Hierarchical Multi-label Text Classification with
Horizontal and Vertical Category Correlations (HV-HMC) model utilizes a loosely coupled GCN to
extract representations for words and documents, emphasizing both horizontal and vertical category
correlations [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ].
      </p>
      <p>
        Large Language Models (LLMs) have also been applied to text classification tasks. The Clue And
Reasoning Prompting (CARP) method, for example, enhances LLMs’ reasoning abilities to address
complex linguistic phenomena in text classification [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. In the healthcare domain, ensemble learning
approaches combining LLMs have shown promise in handling the nuanced nature of multi-label text
classification [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]. Despite these advancements, challenges remain in achieving consistent performance
across all levels of the hierarchy and efectively integrating hierarchical dependencies into model
architectures. Our work aims to build upon these approaches by exploring the synergy between
retrieval methods and LLMs.
      </p>
    </sec>
    <sec id="sec-3">
      <title>3. Shared Task Data</title>
      <p>
        The dataset used in this task consists of computational linguistics publications, structured across three
hierarchical levels of subject labels. This year’s shared task data comprised 1,050 training, 250 evaluation,
and 250 test samples. Each record contains multiple metadata fields, including the ACL Anthology ID,
title, abstract, author(s), URL to the full text, publisher, publication year and month, proceedings title,
DOI, and venue. This year, each sample was also enriched with the corresponding publication’s full
text.
1The code for reproduction and further experimentation is available at https://github.com/kbogas/DICE-FoRC25.
Hierarchy Level
1
2
3
ranging from general to fine-grained categories, following a predefined taxonomy 2. These annotations
were curated based on subject extraction techniques and aligned with topics derived from multiple
paper sources. The reliability of these annotations was evaluated using inter-annotator agreement
scores [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ]. Details on the characteristics of the labels per hierarchy level can be seen in Table 1. For
example, we notice that the third-level labels are much fewer than the second-level ones and much
sparser than the first-level ones, hinting at the task’s dificulty.
      </p>
      <p>ImageandVideColaPsrsoicfiecsastiinognApApulitchaotrisohnispVerifiTceaxttioPnreprocSeosfstiwngareDDoecvuemloepnmteLnatyoutAnalAyscitsiv(eDLLeAa)rninIgntentDetectiSotnanceDetectiVonisualQAN(LVPQfAo)rtheLegalDoBmiaasinDetectioSntoryGeneraIntifoonrmationFCilotererifnegrenceResMoluulttiiohnopReasonBiniogmediNcaarlrNaLtiPvePlotinStOonryttoelollginygExtension
Figure 1: Label counts, across hierarchy levels, in the training set. The further down the taxonomy tree, the
sparser the label occurrences become.</p>
      <p>A significant challenge of the dataset is the severe imbalance in label distribution, as illustrated in
Figure 1. Certain labels appear infrequently, and some labels in the validation and test sets are absent
from the training data. In addition to the primary dataset, this year’s frozen splits are accompanied by
weakly supervised data of approximately 41,000 ACL publications. In our current experiments, these
weakly supervised data were not utilized.</p>
    </sec>
    <sec id="sec-4">
      <title>4. Methodology</title>
      <p>In this section, we provide details on the three main lines of research we worked on.</p>
      <sec id="sec-4-1">
        <title>4.1. Sentence Transformer and Nearest neighbors</title>
        <p>
          Building upon prior research using BERT-based and other transformer-based models for this task [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ],
our initial objective was to establish a strong baseline with minimal computational overhead. To achieve
this, we used Sentence Transformers [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ], which have demonstrated efectiveness as of-the-shelf
embedding models in multiple domains.
        </p>
        <p>Our first approach combined Sentence Transformer embeddings with a -Nearest neighbors
(NN) classifier on top (denoted ST + -NN). Specifically, we computed embeddings for all training
samples and, at inference time, embedded the query document and retrieved its closest training samples
based on cosine similarity. The final labels of the query sample were determined using a
distanceweighted voting scheme, where labels from the nearest neighbors were aggregated proportionally to
the samples’ similarity scores. This baseline served as a rapid prototyping framework, enabling eficient
experimentation and metadata selection. Specifically, after a small-scale grid search, we adopted a setup
where each training sample was represented by its title, abstract, and concatenated labels. The query
samples were embedded using only the title and abstract.
2See the full taxonomy tree in https://huggingface.co/spaces/DFKI-SLT/Taxonomy4CL.</p>
        <p>It is interesting to note that we can achieve high recall levels despite this baseline’s simplicity. This
can be observed in Figure 2, which illustrates the recall across diferent hierarchy levels as the number
of nearest neighbors increases. Even with a relatively small neighborhood size (e.g.,  = 20), we can
achieve approximately 95% recall for Level 1 labels and around 90% on Levels 2 and 3.
1.0
0.9</p>
        <p>In terms of the hyperparameters for this method, we use a fixed top-  = 19, based on the elbow of the
chart in Figure 2, cosine similarity as the embedding distance metric, and the default all-MiniLM-L6-v2
model for encoding each text. Regarding the final classification, we also have a voting threshold fixed
at 0.3, denoting that if approximately3 19 × 0.3 ≈ 6 of the neighbors exhibit a specific label, we mark
it as a valid prediction for the query sample at hand.</p>
      </sec>
      <sec id="sec-4-2">
        <title>4.2. Graph Neural Networks from -NN Graphs</title>
        <p>
          Given the strong performance of the baseline model, we sought to further exploit the structure of
the nearest-neighbor relationships by creating an explicit graph structure. Inspired by prior work
demonstrating the efectiveness of graph-based approaches for text classification [
          <xref ref-type="bibr" rid="ref11">11</xref>
          ], we explored
Graph Neural Networks (GNNs) as a second line of research.
        </p>
        <p>We first construct a -NN graph in which each document represents a node, and edges are formed
based on their nearest-neighbor connections as explained before. The sentence transformer embeddings
serve as node features, and label prediction is formulated as a multi-label node classification problem.</p>
        <p>
          We experimented with various GNN architectures, including Graph Convolutional Networks
(GCNs) [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ] and Graph Attention Networks (GATs) [
          <xref ref-type="bibr" rid="ref13">13</xref>
          ], as well as diferent numbers of layers and
hyper-parameter settings. The best-performing model was a two-layer GAT, efectively capturing
label dependencies within the nearest-neighbor graph. Surprisingly, this approach did not improve
classification performance over the ST+ -NN baseline.
        </p>
      </sec>
      <sec id="sec-4-3">
        <title>4.3. Leveraging Large Language Models for Precision</title>
        <p>Our final line of experimentation was motivated by the observation that transformer-based retrieval
methods, while achieving high recall, sufered from reduced precision and low macro-F1 scores, denoting
low performance on infrequent labels. To address this, we introduced a secondary filtering step using
Large Language Models (LLMs) in a zero-shot setting without further fine-tuning.</p>
        <p>In this setup, given a query sample, we first retrieve the nearest neighbors using our
transformerbased approach and extract their corresponding labels. We then construct a natural language prompt
containing the title and abstract of the query document, along with the label set of its nearest neighbors.
3Because the voting is distance-weighted, train samples near the query sample hold more “voting power” than the ones further
away.</p>
        <p>The LLM was tasked with refining these candidate labels and creating the final label set. Figure 3
contains a schematic representation of this workflow.</p>
        <p>
          We experimented with various open-source LLMs, including the commonly used LLaMA3.1:8B [
          <xref ref-type="bibr" rid="ref14">14</xref>
          ],
the newer, reasoning-focused and biggest model (in terms of parameters) in our setup
DeepSeekR1:70B [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ], and the latest model from Google DeepMind, Gemma3:12B, which has already exhibited
great performance in reasoning tasks despite having fewer parameters [
          <xref ref-type="bibr" rid="ref16">16</xref>
          ]. We also experimented with
diferent prompt configurations, which mainly encapsulated diferent ways to present the taxonomy or
the possible labels for a specific query sample to the LLMs. The main scenarios tested can be grouped
in the following five groups/prompts:
1. Zero Shot-Flat (ZS-Flat): Provide all possible 181 labels to the LLM as a string.
2. Zero Shot-Hier (ZS-Hier): Provide the taxonomy of the labels as a tree-like string.
3. Nearest Labels (NL): Instead of all possible labels, provide only the labels of the query’s nearest
neighbors, therefore limiting the options of the model.
4. Nearest Labels Count (NL-Count): Provide the labels of the query’s nearest neighbors, alongside
their occurrence count.
5. Nearest Labels Count + Hier (NL-Count+Hier): The previous configuration in terms of prompt
syntax, but we modify the final predictions to adhere to the taxonomy by adding all the “missing
ascendant” labels in the predicted label set.
        </p>
        <p>The prompt structure for each of these scenarios is presented in AppendixA. For these models, the
underlying -NN model is the same as before, with the voting threshold set to 0.01 to ensure high-recall
in the label set of the nearest neighbors. Moreover, to make sure the LLMs generate valid labels, we
validate their output using Pydantic4 templates, and we fuzzy-match the predicted label strings to the
actual labels of the taxonomy. All LLMs are locally hosted using an ollama5 server.</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Experiments and Discussion</title>
      <p>The baseline model performs very well, given that it operates in a fully unsupervised manner with
ifxed hyperparameters. Despite its simplicity, this approach already provides a strong micro F1-score,
showcasing its potential on more common labels. In the GNN model, utilizing a 2-layer Graph Attention
Network (GAT) layer, we observe a more pronounced drop in macro F1-score compared to micro
F1-score, indicating poorer performance on infrequent labels. This aligns with expectations, as the
-NN-based graph construction inherently biases predictions toward more common/homogeneous
labels, leading to reduced performance on rare classes.</p>
      <p>On the other hand, the first Gemma3-based model, ZS-Flat, significantly improves macro-F1,
suggesting better handling of rare labels compared to purely neighborhood-based methods. However, its micro
F1-score lags behind the sentence transformer baseline, indicating a lack of sample-wide consistency in
label assignments. The hierarchical variant ZS-Hier performs worse than the flat version, suggesting
that introducing hierarchical constraints in a zero-shot setting may increase task complexity, thus
deteriorating results.</p>
      <p>The NL variants show substantial improvement over the zero-shot variants in the micro F1-score.
This aligns with expectations, as providing label context from similar examples helps refine predictions
without extensive fine-tuning. The NL-Count variant further boosts the micro F1-score, being the
ifrst LLM variant to surpass the baseline in this measure. Finally, the best-performing model is the
variant which explicitly integrates hierarchical constraints. This yields a significant improvement
in the micro F1-score, confirming that previous variants successfully identified fine-grained labels
but frequently omitted their higher-level categories. Regarding the other tested LLMS, Llama 3.1:8B
delivers results similar to Gemma but slightly worse due to its smaller number of parameters and older
architecture. Surprisingly, the DeepSeek-R1:70B model underperforms both Gemma and Llama despite
having approximately 9 times the number of parameters of Llama.</p>
      <p>Overall, our findings highlight the efectiveness of our initial unsupervised baseline, which performs
competitively against many zero-shot models in terms of micro F1-score. This is consistent with our
intuition about the dataset’s “homophily” where similar samples tend to share labels, making
nearestneighbor-based approaches particularly efective. However, the substantial gains in macro F1-score
when using LLMs, even in a zero-shot setting, emphasize the need for better handling of “heterophilous”
samples and rare labels.</p>
    </sec>
    <sec id="sec-6">
      <title>6. Conclusion</title>
      <p>In this study, we explored multiple approaches for multi-label classification of Computational Linguistics
scholarly papers as part of the shared task challenge of FoRC4CL, organized by the NSLP 2025 workshop.
Our experiments spanned unsupervised retrieval-based methods, graph-based learning, and Large
Language Model zero-shot classification. The best-performing model combined Sentence Transformer
embeddings for retrieval, with Gemma3:12B as a zero-shot predictor, leveraging related labels for final
predictions. This approach achieved the highest performance among publicly ranked submissions on the
task leaderboard. For future work, an interesting direction would be to investigate the complementarity
of the diferent models explored in this study, potentially improving predictions through ensemble
methods. Additionally, fine-tuning LLMs specifically for this task could further enhance classification
accuracy.</p>
    </sec>
    <sec id="sec-7">
      <title>Acknowledgments</title>
      <p>This work was funded by the SIMPATHIC project in the context of European Union’s Horizon 2020
research and innovation programme under the agreement No 101080249.</p>
    </sec>
    <sec id="sec-8">
      <title>Declaration on Generative AI</title>
      <p>During the preparation of this work, the authors used GPT-4 and Grammarly in order to: Drafting
content, Grammar and spelling check, Improve writing style. After using these tools/services, the
authors reviewed and edited the content as needed and take full responsibility for the publication’s
content.</p>
    </sec>
    <sec id="sec-9">
      <title>A. Prompts used in Gemma3</title>
      <p>The following table contains the prompts used for the diferent scenarios as explained in the Methodology
Section 4.3.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>J.</given-names>
            <surname>Singh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Varma</surname>
          </string-name>
          ,
          <article-title>Bonsai: diverse and shallow trees for extreme multi-label classification</article-title>
          ,
          <source>in: Proceedings of NeurIPS</source>
          ,
          <year>2020</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>B.</given-names>
            <surname>Loni</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Varma</surname>
          </string-name>
          , Parabel:
          <article-title>Partitioned label trees for extreme classification with application to zero-shot learning</article-title>
          ,
          <source>in: Proceedings of ICML</source>
          ,
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>W.-C.</given-names>
            <surname>Chang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.-F.</given-names>
            <surname>Yu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>I. S.</given-names>
            <surname>Dhillon</surname>
          </string-name>
          ,
          <article-title>X-transformer: Transformer architectures for extreme multi-label classification</article-title>
          ,
          <source>in: Proceedings of AAAI</source>
          ,
          <year>2020</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>L. R.</given-names>
            <surname>Bashyam</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Krestel</surname>
          </string-name>
          ,
          <article-title>Advancing automatic subject indexing: combining weak supervision with extreme multi-label classification</article-title>
          ,
          <source>in: Proceedings of the 1st International Workshop on Natural Scientific Language Processing and Research Knowledge Graphs (NSLP</source>
          <year>2024</year>
          ). Hersonissos, Crete, Greece, volume
          <volume>27</volume>
          ,
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>C.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , L. Dai,
          <string-name>
            <given-names>C.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <surname>L. Zhang,</surname>
          </string-name>
          <article-title>Hgbl: A fine granular hierarchical multi-label text classification model</article-title>
          ,
          <source>Neural Processing Letters</source>
          <volume>57</volume>
          (
          <year>2024</year>
          )
          <article-title>1</article-title>
          . doi:
          <volume>10</volume>
          .1007/s11063-024-11713-x.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>L.</given-names>
            <surname>Xu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Teng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Zhao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Guo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Xiao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Jiang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Ren</surname>
          </string-name>
          ,
          <article-title>Hierarchical multi-label text classification with horizontal and vertical category correlations</article-title>
          , in: M.
          <article-title>-</article-title>
          <string-name>
            <surname>F. Moens</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          <string-name>
            <surname>Huang</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <string-name>
            <surname>Specia</surname>
          </string-name>
          , S. W.-t. Yih (Eds.),
          <source>Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing</source>
          , Association for Computational Linguistics, Online and
          <string-name>
            <given-names>Punta</given-names>
            <surname>Cana</surname>
          </string-name>
          , Dominican Republic,
          <year>2021</year>
          , pp.
          <fpage>2459</fpage>
          -
          <lpage>2468</lpage>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2021</year>
          .emnlp-main.
          <volume>190</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>X.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Wu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Guo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , G. Wang,
          <source>Text classification via large language models</source>
          ,
          <year>2023</year>
          . URL: https://arxiv.org/abs/2305.08377. arXiv:
          <volume>2305</volume>
          .
          <fpage>08377</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>H.</given-names>
            <surname>Sakai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. S.</given-names>
            <surname>Lam</surname>
          </string-name>
          ,
          <article-title>Quad-llm-mltc: Large language models ensemble learning for healthcare text multi-label classification</article-title>
          ,
          <year>2025</year>
          . URL: https://arxiv.org/abs/2502.14189. arXiv:
          <volume>2502</volume>
          .
          <fpage>14189</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>R. Abu</given-names>
            <surname>Ahmad</surname>
          </string-name>
          , E. Borisova, G. Rehm, Forc@nslp2024:
          <article-title>Overview and insights from the field of research classification shared task</article-title>
          , in: G. Rehm,
          <string-name>
            <given-names>S.</given-names>
            <surname>Dietze</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Schimmler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Krüger</surname>
          </string-name>
          (Eds.),
          <source>Natural Scientific Language Processing and Research Knowledge Graphs</source>
          , Springer Nature Switzerland, Cham,
          <year>2024</year>
          , pp.
          <fpage>189</fpage>
          -
          <lpage>204</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>N.</given-names>
            <surname>Reimers</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Gurevych</surname>
          </string-name>
          ,
          <article-title>Sentence-bert: Sentence embeddings using siamese bert-networks</article-title>
          ,
          <source>in: Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing, Association for Computational Linguistics</source>
          ,
          <year>2019</year>
          . URL: http://arxiv.org/abs/
          <year>1908</year>
          .10084.
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <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>Artificial Intelligence Review</source>
          <volume>57</volume>
          (
          <year>2024</year>
          )
          <fpage>190</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>T. N.</given-names>
            <surname>Kipf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Welling</surname>
          </string-name>
          ,
          <article-title>Semi-supervised classification with graph convolutional networks</article-title>
          ,
          <source>arXiv preprint arXiv:1609.02907</source>
          (
          <year>2016</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>P.</given-names>
            <surname>Veličković</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Cucurull</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Casanova</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Romero</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Lio</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Bengio</surname>
          </string-name>
          ,
          <article-title>Graph attention networks</article-title>
          ,
          <source>arXiv preprint arXiv:1710.10903</source>
          (
          <year>2017</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>A.</given-names>
            <surname>Grattafiori</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Dubey</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Jauhri</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Pandey</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Kadian</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Al-Dahle</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Letman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Mathur</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Schelten</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Vaughan</surname>
          </string-name>
          , et al.,
          <source>The llama 3 herd of models, arXiv preprint arXiv:2407.21783</source>
          (
          <year>2024</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>D.</given-names>
            <surname>Guo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , J. Song,
          <string-name>
            <given-names>R.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Xu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Zhu</surname>
          </string-name>
          , S. Ma,
          <string-name>
            <given-names>P.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Bi</surname>
          </string-name>
          , et al.,
          <string-name>
            <surname>Deepseek-</surname>
          </string-name>
          r1:
          <article-title>Incentivizing reasoning capability in llms via reinforcement learning</article-title>
          ,
          <source>arXiv preprint arXiv:2501.12948</source>
          (
          <year>2025</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>G.</given-names>
            <surname>Team</surname>
          </string-name>
          ,
          <source>Gemma 3 Technical Report, Technical Report, Google DeepMind</source>
          ,
          <year>2025</year>
          . URL: https: //storage.googleapis.com/deepmind-media/gemma/Gemma3Report.pdf.
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          <string-name>
            <surname>ZS-Flat</surname>
            <given-names>...</given-names>
          </string-name>
          <article-title>Usually we have around 3 and at least 1 label. These are the available labels: [tax_string_flat] ZS-Hier .</article-title>
          ..
          <source>Usually we have Level</source>
          <volume>1</volume>
          :
          <article-title>1 to 9 labels, the median being 3, Level 2: 0 to 7 labels, the median being 2, Level 3: 0 to 3 labels, the median being 0. This is the hierarchical label taxonomy: [tax_string_hier]</article-title>
          .
          <source>NL</source>
          ...
          <article-title>Select among these labels from similar, labeled papers to the manuscript [neighbor_labels].</article-title>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>