<!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>Extreme Classification of European Union Law Documents driven by Entity Embeddings</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Irene Benedetto</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>Luca Cagliero</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Francesco Tarasconi</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>MAIZE</institution>
          ,
          <addr-line>Via San Quintino 31, 10121 Torino</addr-line>
          ,
          <country country="IT">Italy</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Politecnico di Torino, Dipartimento di Automatica e Informatica</institution>
          ,
          <addr-line>Corso Duca degli Abruzzi 24, 10129 Torino</addr-line>
          ,
          <country country="IT">Italy</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>Extreme Multi-label Classification (XMC) is the task of labeling documents with one or more labels from a large set of classes. In the context of Legal Artificial Intelligence, XMC is relevant to the automatic categorization of documents as they commonly address several orthogonal categorization schemes. Since retrieving a suficient number of training document examples per class is challenging, XMC models are expected to be particularly efective in zero-shot learning scenarios. Existing approaches rely on transformer-based classification models, which leverage the attention mechanism to attend to specific textual units. However, classical attention scores are not able to diferentiate between domain-specific and generic textual units. In this paper, we propose to use a legal entity-aware approach to zero-shot XMC of European Union law documents. By integrating information about domain-specific legal entities we ease the detection of label-sensitive information and prevent XMC models from attending to irrelevant or wrong text spans. The results achieved on the law documents available in the EURLex benchmark show that our approach is superior to both previous transformer-based approaches and opensource Large Language Models.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Legal Artificial Intelligence</kwd>
        <kwd>Extreme Multi-label Classification</kwd>
        <kwd>Language Models</kwd>
        <kwd>Law Documents</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        The task of eXtreme Multi-label Classification (XMC) aims
at assigning to a given text one or more pertinent labels
shortlisted from a very large set of classes. Since some of
the target classes are likely to be underrepresented or even
absent in the training data, classifiers used for XMC are
expected to be particularly efective in zero-shot learning
scenarios [
        <xref ref-type="bibr" rid="ref1 ref2">1, 2</xref>
        ].
      </p>
      <p>
        Transformer-based architectures have shown to be
particularly efective in tackling XMC [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] in various application
domains such as e-commerce [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ], medical diagnosis [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] and
legal AI [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. This paper focuses on solving the XMC task in a
particular legal sub-domain, i.e., the automatic classification
of law documents.
      </p>
      <p>
        Legal documents such as laws have peculiar
characteristics that make the classification task inherently complex.
Firstly, the vocabulary used is very technical and rich of
domain-specific expressions and entities [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. Secondly, legal
documents likely have a peculiar structure making content
retrieval and ranking particularly challenging [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. Lastly,
the contained text is often verbose as usually contains a lot
of preliminaries or repetitions [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ].
      </p>
      <p>
        Benchmark datasets for law classification such as
EURLex [
        <xref ref-type="bibr" rid="ref5 ref9">5, 9</xref>
        ] contain acts and proposals of the European
legislation. To support their retrieval and exploration law
documents are often annotated by Publication Ofices with a very
large number of labels (e.g., 4,271 labels in EURLex), which
encompass frequent labels as well as few- and zero-shot
ones. Therefore, automating the process of law document
classification requires the use of accurate XMC models.
      </p>
      <p>
        In this paper we aim at overcoming the main limitations
of existing transformer-based approaches to law document
classification (e.g., [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ]), which leverage the attention
mechanism to attend to the most salient textual units. Since
attention scores do not diferentiate between legal and
generalpurpose textual units, the capabilities of transformers to
correctly assign law document categories can be limited,
particularly in zero-shot learning contexts. To overcome this
issue, we propose to adopt an entity-aware attention
mechanism based on the LUKE transformer [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ], which exploits
the semantic characteristics of the domain by the means
of entity embeddings, to enhance zero-shot classification.
The key idea is to mainly consider the textual dependencies
with the tokens associated with entities as they are most
likely to be discriminating in law document classification.
      </p>
      <p>
        The experiments carried out on the EURLex benchmark
dataset [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] confirm the efectiveness of entity embeddings
in enhancing zero-shot XMC performance. Notably, the
proposed approach not only performs better than existing
transformer-based methods but also turns out to be more
efective than an opensource Large Language Model with a
larger number of parameters, i.e., Llama 2 7B [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ].
      </p>
      <p>The remainder of this work is organized as follows.
Section 2 reviews the existing literature, Section 3 describes
the methodology, Section 4 presents the main
experimental results whereas Section 5 draws the conclusions of this
work.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Related work</title>
      <p>
        Legal document classification. The most common case
of document classification in the legal domain is the
automatic categorization of court cases, where the goal is to
predict the law area of the given case. Existing related
works mainly focused on employing machine learning and
deep learning solutions [
        <xref ref-type="bibr" rid="ref13 ref14 ref15 ref16">13, 14, 15, 16</xref>
        ]. Parallel studies have
delved into the automatic text classification of legislation to
discern the law topic, with a particular emphasis on
monolingual datasets [
        <xref ref-type="bibr" rid="ref10 ref17 ref18 ref19 ref20 ref21 ref22">10, 17, 18, 19, 20, 21, 22</xref>
        ]. A more limited
body of work has explored multi-lingual datasets of
legislations [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ]. Specifically, the work presented in [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ]
investigates the semantic relationship between each document and
labels. However, their performance on English documents is
limited. Conversely, the transformer-based approaches
proposed in [
        <xref ref-type="bibr" rid="ref10 ref18 ref9">9, 10, 18</xref>
        ] are, to the best of our knowledge,
state-ofthe-art on English-written law documents. Unlike [
        <xref ref-type="bibr" rid="ref10 ref18 ref9">9, 10, 18</xref>
        ],
our work focuses on leveraging entity information in law
classification. To the best of our knowledge, the idea to
boost the performance of transformer-based approaches to
law document classification using entity embeddings has
not been addressed in literature so far.
      </p>
      <sec id="sec-2-1">
        <title>Transformers in Legal Artificial Intelligence.</title>
        <p>
          Transformer-based models have demonstrated promising
results in several areas of legal AI. Specifically, pre-trained
language models have proved to be efective in tackling
various downstream tasks [
          <xref ref-type="bibr" rid="ref18 ref23 ref24">18, 23, 24</xref>
          ]. Specifically, they
encompass legal entity recognition [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ], legal question
answering [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ], and legal document summarization [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ].
        </p>
        <p>
          Language Models have been designed and fine-tuned for
the legal domain as well, mainly on Chinese documents. For
example, LaWGPT [
          <xref ref-type="bibr" rid="ref25">25</xref>
          ] is pre-trained using a large-scale
Chinese legal text database. Lawyer LLaMA [
          <xref ref-type="bibr" rid="ref26">26</xref>
          ] is a
Chinese Legal Large Language Model (LLM) that undergoes
training on a substantial legal dataset. This model is capable
of ofering legal advice, analyzing legal cases, and
generating legal articles. ChatLaw [
          <xref ref-type="bibr" rid="ref27">27</xref>
          ] comprises a collection of
open-source legal LLMs in Chinese, including models like
ChatLaw-13B and ChatLaw-33B. These models are trained
on a vast dataset encompassing legal news, forums, and
judicial interpretations. Existing legal LLMs are suited to
Chinese documents only and are not specifically designed
to tackle the eXtreme Multi-label Classification task.
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>3. Methodology</title>
      <p>
        In this section, we describe the proposed methodology for
eXtreme Multi-label Classification (XMC) of law documents.
Our purpose is to tackle XMC in a zero-shot setting, i..e.,
in the absence of ad hoc training examples. To address
this issue, we propose to recognize and use entity
embeddings in the document text. Specifically, we leverage the
pre-trained LUKE model [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ] for the classification task by
replacing the original classification layer with one trained
from scratch on the benchmark dataset. LUKE is a
pretrained contextualized representation of words and entities
based on transformer architecture. It produces the
contextualized representations of both words and entities thanks
to the entity-aware self-attention mechanism, an extension
of the self-attention mechanism when computing attention
scores.
      </p>
      <p>Given a sequence of input vectors x1, x2, ..., x, where
x ∈ R, the attention score  is computed as follows:
 =
⎧Kx⊤Qx, if both x and x are words
⎪
⎪
⎪⎨Kx⊤Q2x, if x is word and x is entity
⎪Kx⊤Q2x, if x is entity and x is word
⎪
⎪⎩Kx⊤Q2x, if both x and x are entities
where Q2, Q2, Q2 ∈ R×  are query matrices,
K ∈ R×  is key matrix.</p>
    </sec>
    <sec id="sec-4">
      <title>4. Experiments</title>
      <p>
        Dataset. In our experiments, we consider the English
portion of EURLEX dataset [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ], a multi-label legal document
classification dataset. It consists of 65k European Union
(EU) laws annotated with the EUROVOC taxonomy labels.
      </p>
      <p>The EUROVOC taxonomy is a multilingual classification
and thesaurus system used by the European Union. This
tool is designed to organize and categorize concepts and
terms used in oficial EU documents, facilitating research
and access to information. Each european act in the EURLEX
dataset is associated to one or more EUROVOC concept.</p>
      <p>
        Similar to [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] we focused on third level labels. For training
and test our models we follow the dataset split provided by
the respective authors.
      </p>
      <sec id="sec-4-1">
        <title>Competitors.</title>
        <p>
          We compare our methodology with:
• Logistic Regression: A baseline consisting of a
Term Frequency-Inverse Document Frequency
(TFIDF) encoder, counting both local and global
frequencies of occurrence of the input tokens, and a logistic
regression model trained on top of the encoded text.
• RoBERTa [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ]: builds on BERT [
          <xref ref-type="bibr" rid="ref28">28</xref>
          ] removing the
next-sentence pre-training objective and training
with much larger mini-batches and learning rates;
• LLama 2 7B [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ]: a pre-trained Large Language
Model with approximately 7 billion parameters that
showcases remarkable performance in both few-shot
and zero-shot scenarios. Analogously to [
          <xref ref-type="bibr" rid="ref29">29</xref>
          ], to
compare with LLMs we treated the XMC task as a
generative problem.
        </p>
        <p>
          Experimental setting. We finetuned the base version of
LUKE model (studio-ousia/luke-base), for 10 epochs. This
model was trained with AdamW optimizer [
          <xref ref-type="bibr" rid="ref30">30</xref>
          ] with a
weight decay of 0.01 and a learning rate of 1e-5. During
training, we applied a 0.1 probability of dropout on
classification layer.
        </p>
        <p>
          For the sake of fairness, LLama 2 7B has been trained with
Parameter-eficient fine-tuning (PEFT) [
          <xref ref-type="bibr" rid="ref31">31</xref>
          ], LoRA [
          <xref ref-type="bibr" rid="ref32">32</xref>
          ] that
freezes pre-trained model weights and introduces trainable
rank decomposition matrices into each layer of the models
architecture.
        </p>
        <p>We trained the 8-bit quantized version of this model for a
maximum of 3 epochs, with a learning rate of 1.4e-5, LORA
 = 16 and  = 64.</p>
        <p>Metrics. Here we describe the various metrics used to
evaluate the performance of the models in our study.
• R@5 and P@5: precision and recall at  predictions
where  is equal to 5 in our dataset. It corresponds
to the mean number of labels in the training set.</p>
        <p>TP</p>
        <p>TP + FP</p>
        <p>TP</p>
        <p>TP + FN
• mRP: for each document, the metric ranks the
labels selected by the model by decreasing confidence,
computes Precision@, where  is the document’s
number of gold labels, and then averages the results
over documents.</p>
        <p>Hardware. We conducted all the experiments on a single
NVidia® Tesla® V100 GPU with 16 GB of memory, running
on Ubuntu 22.04 LTS.
4.1. Results
Performance comparison with diferent training
strategies. We conducted experiments with diferent
training procedures in order to test the performance of the
proposed methodology and to compare it with that of
diferent architectures. To this end, we first freezed the 9 attention
blocks and fine-tune the classification layer to test the
goodness of the hidden representation of our model. Secondly,
we perform an end-to-end evaluation of the proposed model
to fully assess its potential.</p>
      </sec>
      <sec id="sec-4-2">
        <title>Zero-shot performance comparison. We conducted a</title>
        <p>comparative analysis of the performance of our model and
competitors on zero-shot labels (i.e. labels not present in
the training set). In this case, we trained all models without
employing any freezing of model layers.</p>
        <p>
          We report the results in Table 2 in terms of Precision@5
and Recall@5. Our evaluation focuses on evaluate the
model’s ability to retrieve all relevant results without any
knowledge about labels. The number of predictions
considered is always five, in compliance with [
          <xref ref-type="bibr" rid="ref20">20</xref>
          ].
        </p>
        <p>Our results indicate that the baseline model performs
poorly in this zero-shot learning context, with very low
scores for both Precision@5 and Recall@5. The
state-ofthe-art model exhibits slightly higher scores, but still
performs worse than the model proposed in this work. The
proposed method achieves significantly higher Precision @5
and Recall@5 scores, indicating its superiority over the other
two models in this zero-shot learning context. These
results demonstrate the accuracy of our proposed model and
the completeness of the model’s predictions. Interestingly,
LLMs demonstrate superior Recall@5 performance, even
though their overall results are worse.</p>
      </sec>
      <sec id="sec-4-3">
        <title>Comparison between models’ attention. To further</title>
        <p>support the eficacy of the entity-aware self-attention
mechanism for the given task, we examine the attention scores
obtained by the best overall models according to the results
in Table 1. For each class we compute the mean tokens
attention score assigned by the state-of-the-art and LUKE
models, considering the last attention layer1. We sorted the
results in decreasing order, ranking the tokens according to
the attention given by the model. Then, separately for each
class  ∈ , the Mean Reciprocal Rank (MRR) of model 
with the most frequent  tokens of class  was computed,
i.e. :</p>
        <p>MRR,, = MRR(R(), )
(1)
where R() is the model  attention ranking position of
 most frequent tokens of class  ∈ .</p>
        <p>We then compute the MRR diference between our model
and the state-of-the-art model for diferent values of :
MRR =
1 ∑︁(MRRLUKE,, −
|| ∈</p>
        <p>MRRSOTA,,)
(2)
where
• MRRLUKE,, is the Mean Reciprocal Rank computed
with the LUKE model ranking, for class  ∈ 
considering the  most frequent term.
• MRRSOTA,, is the Mean Reciprocal Rank computed
with the state-of-the-art model ranking, for class
 ∈  considering the  most frequent term.</p>
        <p>These values are reported in Figures 1 and 2 which
consider the frequent and zero-shot labels, respectively.</p>
        <p>Scores above zero indicate that, on average, our model
is giving more attention to the most frequent terms of the
classes. These results reveal that our model is giving more
attention to terms more frequently appear in each class,
especially in correspondence of zero-shot labels, although
diferences decreases while  increases.
1We consider the last attention head because is the closest to the
classiifcation layer.</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Conclusion and future work</title>
      <p>In this paper we explored the use of an entity-aware
attention-based method to eXtreme Multi-label
Classification of law documents. We show that attending to
entityrelated tokens enhances the capability of the transformer to
attend to class-related pieces of text. The proposed method
shows performance superior to both state-of-the-art
transformers and Large Language Models, achieving higher
precision and recall scores, especially in the most challenging
zero-shot learning context. The experiments also highlight
the impact of diferent training strategies and the
efectiveness of the proposed model in generating informative
hidden representations.</p>
      <p>
        Based on the preliminary results, we envision the
following future research directions:
• Cross-lingual Transfer: We plan to study the
models’ performance in the zero-shot cross-lingual
transfer scenario for legal text classification in languages
other than English.
• LLMs Fine-tuning Strategies: Another line of
research will be the exploration of additional LLM
ifne-tuning strategies that incorporate hierarchical
clustering [
        <xref ref-type="bibr" rid="ref29">29</xref>
        ].
      </p>
    </sec>
    <sec id="sec-6">
      <title>Acknowledgments</title>
      <p>The research leading to these results has been partially
supported by the SmartData@PoliTO Center for Big Data
Technologies. This study was partially carried out within the the
MICS (Made in Italy – Circular and Sustainable) Extended
Partnership and received funding from Next-GenerationEU
(Italian PNRR – M4 C2, Invest 1.3 – D.D. 1551.11-10-2022,
PE00000004) and within the FAIR - Future Artificial
Intelligence Research - and received funding from the
European Union Next-GenerationEU (PNRR MISSIONE 4
COMPONENTE 2, INVESTIMENTO 1.3 D.D. 1555 11/10/2022,
PE00000013). This paper reflects only the authors’ views
and opinions, neither the European Union nor the European
Commission can be considered responsible for them.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>H.-F.</given-names>
            <surname>Yu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Zhong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>I. S.</given-names>
            <surname>Dhillon</surname>
          </string-name>
          , W.-C. Wang,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <article-title>X-bert: extreme multi-label text classification using bidirectional encoder representations from transformers</article-title>
          ,
          <source>in: NeurIPS 2019 Workshop on Science Meets Engineering of Deep Learning</source>
          ,
          <year>2019</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>W.</given-names>
            <surname>Chang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Yu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Zhong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>I. S.</given-names>
            <surname>Dhillon</surname>
          </string-name>
          ,
          <article-title>A modular deep learning approach for extreme multi-label text classification</article-title>
          , CoRR abs/
          <year>1905</year>
          .02331 (
          <year>2019</year>
          ). URL: http://arxiv.org/abs/
          <year>1905</year>
          . 02331. arXiv:
          <year>1905</year>
          .02331.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>R.</given-names>
            <surname>Agrawal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Gupta</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Prabhu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Varma</surname>
          </string-name>
          ,
          <article-title>Multilabel learning with millions of labels: Recommending advertiser bid phrases for web pages</article-title>
          ,
          <source>in: Proceedings of the 22nd International Conference on World Wide Web, WWW '13</source>
          ,
          <string-name>
            <surname>Association</surname>
          </string-name>
          for Computing Machinery, New York, NY, USA,
          <year>2013</year>
          , p.
          <fpage>13</fpage>
          -
          <lpage>24</lpage>
          . URL: https://doi.org/10.1145/2488388.2488391. doi:
          <volume>10</volume>
          . 1145/2488388.2488391.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>A.</given-names>
            <surname>Johnson</surname>
          </string-name>
          , T. Pollard,
          <string-name>
            <given-names>L.</given-names>
            <surname>Shen</surname>
          </string-name>
          , L.-w. Lehman,
          <string-name>
            <given-names>M.</given-names>
            <surname>Feng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Ghassemi</surname>
          </string-name>
          , B. Moody, P. Szolovits,
          <string-name>
            <given-names>L.</given-names>
            <surname>Celi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Mark</surname>
          </string-name>
          ,
          <article-title>Mimic-iii, a freely accessible critical care database</article-title>
          ,
          <source>Scientific Data</source>
          <volume>3</volume>
          (
          <year>2016</year>
          )
          <article-title>160035</article-title>
          . doi:
          <volume>10</volume>
          .1038/sdata.
          <year>2016</year>
          .
          <volume>35</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>I.</given-names>
            <surname>Chalkidis</surname>
          </string-name>
          , E. Fergadiotis,
          <string-name>
            <given-names>P.</given-names>
            <surname>Malakasiotis</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Androutsopoulos</surname>
          </string-name>
          ,
          <article-title>Large-scale multi-label text classification on EU legislation, in: Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, Association for Computational Linguistics</article-title>
          , Florence, Italy,
          <year>2019</year>
          , pp.
          <fpage>6314</fpage>
          -
          <lpage>6322</lpage>
          . URL: https://aclanthology.org/P19-1636. doi:
          <volume>10</volume>
          . 18653/v1/
          <fpage>P19</fpage>
          -1636.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>I.</given-names>
            <surname>Angelidis</surname>
          </string-name>
          , I. Chalkidis,
          <string-name>
            <given-names>M.</given-names>
            <surname>Koubarakis</surname>
          </string-name>
          ,
          <article-title>Named entity recognition, linking and generation for greek legislation</article-title>
          ,
          <source>in: JURIX</source>
          ,
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>D.</given-names>
            <surname>Hendrycks</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Burns</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Chen</surname>
          </string-name>
          , S. Ball,
          <article-title>CUAD: an expert-annotated NLP dataset for legal contract review</article-title>
          ,
          <source>CoRR abs/2103</source>
          .06268 (
          <year>2021</year>
          ). URL: https://arxiv.org/ abs/2103.06268. arXiv:
          <volume>2103</volume>
          .
          <fpage>06268</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>D.</given-names>
            <surname>Jain</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. D.</given-names>
            <surname>Borah</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Biswas</surname>
          </string-name>
          ,
          <article-title>Summarization of legal documents: Where are we now and the way forward</article-title>
          ,
          <source>Computer Science Review</source>
          <volume>40</volume>
          (
          <year>2021</year>
          )
          <article-title>100388</article-title>
          . URL: https://www.sciencedirect.com/science/article/ pii/S1574013721000289. doi:https://doi.org/10. 1016/j.cosrev.
          <year>2021</year>
          .
          <volume>100388</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>I.</given-names>
            <surname>Chalkidis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Fergadiotis</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Androutsopoulos</surname>
          </string-name>
          ,
          <article-title>Multieurlex - a multi-lingual and multi-label legal document classification dataset for zero-shot cross-lingual transfer</article-title>
          ,
          <year>2021</year>
          . URL: https://arxiv.org/abs/2109.00904. doi:
          <volume>10</volume>
          .48550/ARXIV.2109.00904.
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>I.</given-names>
            <surname>Chalkidis</surname>
          </string-name>
          , E. Fergadiotis,
          <string-name>
            <given-names>P.</given-names>
            <surname>Malakasiotis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Aletras</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Androutsopoulos</surname>
          </string-name>
          ,
          <article-title>Extreme multi-label legal text classification: A case study in EU legislation</article-title>
          ,
          <source>in: Proceedings of the Natural Legal Language Processing Workshop</source>
          <year>2019</year>
          , Association for Computational Linguistics, Minneapolis, Minnesota,
          <year>2019</year>
          , pp.
          <fpage>78</fpage>
          -
          <lpage>87</lpage>
          . URL: https://aclanthology.org/W19-2209. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>W19</fpage>
          -2209.
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>I.</given-names>
            <surname>Yamada</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Asai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Shindo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Takeda</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Matsumoto</surname>
          </string-name>
          , Luke:
          <article-title>Deep contextualized entity representations with entity-aware self-attention</article-title>
          ,
          <source>in: EMNLP</source>
          ,
          <year>2020</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>H.</given-names>
            <surname>Touvron</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Martin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Stone</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Albert</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Almahairi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Babaei</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Bashlykov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Batra</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Bhargava</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Bhosale</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Bikel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Blecher</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C. C.</given-names>
            <surname>Ferrer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Cucurull</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Esiobu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Fernandes</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Fu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Fu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Fuller</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Gao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Goswami</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Goyal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Hartshorn</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Hosseini</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Hou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Inan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Kardas</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Kerkez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Khabsa</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Kloumann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Korenev</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P. S.</given-names>
            <surname>Koura</surname>
          </string-name>
          , M.
          <article-title>-</article-title>
          <string-name>
            <surname>A. Lachaux</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Lavril</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Lee</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Liskovich</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          <string-name>
            <surname>Lu</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          <string-name>
            <surname>Mao</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          <string-name>
            <surname>Martinet</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Mihaylov</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Mishra</surname>
            , I. Molybog,
            <given-names>Y.</given-names>
          </string-name>
          <string-name>
            <surname>Nie</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Poulton</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Reizenstein</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Rungta</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          <string-name>
            <surname>Saladi</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Schelten</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Silva</surname>
            ,
            <given-names>E. M.</given-names>
          </string-name>
          <string-name>
            <surname>Smith</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Subramanian</surname>
            ,
            <given-names>X. E.</given-names>
          </string-name>
          <string-name>
            <surname>Tan</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          <string-name>
            <surname>Tang</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Taylor</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Williams</surname>
            ,
            <given-names>J. X.</given-names>
          </string-name>
          <string-name>
            <surname>Kuan</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Xu</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          <string-name>
            <surname>Yan</surname>
            , I. Zarov,
            <given-names>Y.</given-names>
          </string-name>
          <string-name>
            <surname>Zhang</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Fan</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Kambadur</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Narang</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Rodriguez</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Stojnic</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Edunov</surname>
          </string-name>
          ,
          <source>T. Scialom, Llama</source>
          <volume>2</volume>
          :
          <article-title>Open foundation and fine-tuned chat models</article-title>
          ,
          <year>2023</year>
          . arXiv:
          <volume>2307</volume>
          .
          <fpage>09288</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>O.</given-names>
            <surname>Sulea</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Zampieri</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Malmasi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Vela</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L. P.</given-names>
            <surname>Dinu</surname>
          </string-name>
          ,
          <string-name>
            <surname>J. van Genabith</surname>
          </string-name>
          ,
          <article-title>Exploring the use of text classification in the legal domain</article-title>
          ,
          <source>CoRR abs/1710</source>
          .09306 (
          <year>2017</year>
          ). URL: http://arxiv.org/abs/1710. 09306. arXiv:
          <volume>1710</volume>
          .
          <fpage>09306</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>J.</given-names>
            <surname>Gao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Ning</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Han</surname>
          </string-name>
          ,
          <string-name>
            <surname>L</surname>
          </string-name>
          . Kong,
          <string-name>
            <given-names>H.</given-names>
            <surname>Qi</surname>
          </string-name>
          ,
          <article-title>Legal text classification model based on text statistical features and deep semantic features</article-title>
          , in: P. M. 0001,
          <string-name>
            <surname>T. M.</surname>
          </string-name>
          <year>0001</year>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Majumder</surname>
          </string-name>
          , M. Mitra (Eds.), Working Notes of FIRE 2020 -
          <article-title>Forum for Information Retrieval Evaluation, Hyderabad</article-title>
          , India,
          <source>December 16-20</source>
          ,
          <year>2020</year>
          , volume
          <volume>2826</volume>
          <source>of CEUR Workshop Proceedings, CEUR-WS.org</source>
          ,
          <year>2020</year>
          , pp.
          <fpage>35</fpage>
          -
          <lpage>41</lpage>
          . URL: http://ceur-ws.
          <source>org/</source>
          Vol-
          <volume>2826</volume>
          /
          <fpage>T1</fpage>
          -7.pdf .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>H.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Wu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Lu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Ding</surname>
          </string-name>
          ,
          <article-title>A comparative study of automated legal text classification using random forests and deep learning</article-title>
          ,
          <source>Information Processing &amp; Management</source>
          <volume>59</volume>
          (
          <year>2022</year>
          )
          <article-title>102798</article-title>
          . URL: https://www.sciencedirect.com/science/article/ pii/S0306457321002764. doi:https://doi.org/10. 1016/j.ipm.
          <year>2021</year>
          .
          <volume>102798</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>A.</given-names>
            <surname>Aguiar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Silveira</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Pinheiro</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Furtado</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. A.</given-names>
            <surname>Neto</surname>
          </string-name>
          ,
          <article-title>Text classification in legal documents extracted from lawsuits in brazilian courts</article-title>
          , in: A.
          <string-name>
            <surname>Britto</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          <string-name>
            <surname>Valdivia Delgado</surname>
          </string-name>
          (Eds.),
          <source>Intelligent Systems</source>
          , Springer International Publishing, Cham,
          <year>2021</year>
          , pp.
          <fpage>586</fpage>
          -
          <lpage>600</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>E.</given-names>
            <surname>Loza Mencía</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Fürnkranz</surname>
          </string-name>
          ,
          <article-title>Eficient Multilabel Classification Algorithms for Large-Scale Problems in the Legal Domain</article-title>
          , Springer-Verlag, Berlin, Heidelberg,
          <year>2010</year>
          , p.
          <fpage>192</fpage>
          -
          <lpage>215</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <given-names>I.</given-names>
            <surname>Chalkidis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Fergadiotis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Malakasiotis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Aletras</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Androutsopoulos</surname>
          </string-name>
          , LEGAL-BERT:
          <article-title>The muppets straight out of law school, in: Findings of the Association for Computational Linguistics: EMNLP 2020, Association for Computational Linguistics</article-title>
          , Online,
          <year>2020</year>
          , pp.
          <fpage>2898</fpage>
          -
          <lpage>2904</lpage>
          . URL: https: //aclanthology.org/
          <year>2020</year>
          .findings-emnlp.
          <volume>261</volume>
          . doi:
          <volume>10</volume>
          . 18653/v1/
          <year>2020</year>
          .findings-emnlp.
          <volume>261</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <given-names>C.</given-names>
            <surname>Papaloukas</surname>
          </string-name>
          , I. Chalkidis,
          <string-name>
            <given-names>K.</given-names>
            <surname>Athinaios</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Pantazi</surname>
          </string-name>
          ,
          <string-name>
            <surname>M.</surname>
          </string-name>
          <article-title>Koubarakis, Multi-granular legal topic classification on greek legislation</article-title>
          ,
          <source>CoRR abs/2109</source>
          .15298 (
          <year>2021</year>
          ). URL: https://arxiv.org/abs/2109.15298. arXiv:
          <volume>2109</volume>
          .
          <fpage>15298</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <given-names>I.</given-names>
            <surname>Chalkidis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Fergadiotis</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Androutsopoulos</surname>
          </string-name>
          ,
          <article-title>Multieurlex - A multi-lingual and multi-label legal document classification dataset for zero-shot cross-lingual transfer</article-title>
          ,
          <source>CoRR abs/2109</source>
          .00904 (
          <year>2021</year>
          ). URL: https: //arxiv.org/abs/2109.00904. arXiv:
          <volume>2109</volume>
          .
          <fpage>00904</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <given-names>X.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Xiao</surname>
          </string-name>
          , L. Jing,
          <article-title>Labelaware document representation via hybrid attention for extreme multi-label text classification</article-title>
          , CoRR abs/
          <year>1905</year>
          .10070 (
          <year>2019</year>
          ). URL: http://arxiv.org/abs/
          <year>1905</year>
          . 10070. arXiv:
          <year>1905</year>
          .10070.
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [22]
          <string-name>
            <given-names>W.</given-names>
            <surname>Zhao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Peng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Eger</surname>
          </string-name>
          , E. Cambria,
          <string-name>
            <given-names>M.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <article-title>Towards scalable and reliable capsule networks for challenging NLP applications, in: Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, Association for Computational Linguistics</article-title>
          , Florence, Italy,
          <year>2019</year>
          , pp.
          <fpage>1549</fpage>
          -
          <lpage>1559</lpage>
          . URL: https://aclanthology.org/P19-1150. doi:
          <volume>10</volume>
          . 18653/v1/
          <fpage>P19</fpage>
          -1150.
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [23]
          <string-name>
            <given-names>P.</given-names>
            <surname>Henderson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. S.</given-names>
            <surname>Krass</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Zheng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Guha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C. D.</given-names>
            <surname>Manning</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Jurafsky</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. E.</given-names>
            <surname>Ho</surname>
          </string-name>
          ,
          <article-title>Pile of law: Learning responsible data filtering from the law and a 256GB open-source legal dataset</article-title>
          ,
          <source>in: Thirty-sixth Conference on Neural Information Processing Systems Datasets and Benchmarks Track</source>
          ,
          <year>2022</year>
          . URL: https://openreview. net/forum?id=3HCT3xfNm9r.
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [24]
          <string-name>
            <given-names>S.</given-names>
            <surname>Paul</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Mandal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Goyal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Ghosh</surname>
          </string-name>
          ,
          <article-title>Pre-training transformers on indian legal text</article-title>
          ,
          <source>arXiv preprint arXiv:2209.06049</source>
          (
          <year>2022</year>
          ). URL: https://arxiv.org/abs/ 2209.06049.
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          [25]
          <string-name>
            <given-names>H.</given-names>
            <surname>Nguyen</surname>
          </string-name>
          ,
          <source>A brief report on lawgpt 1</source>
          .
          <article-title>0: A virtual legal assistant based on gpt-3</article-title>
          , arXiv preprint arXiv:
          <volume>2302</volume>
          .05729 (
          <year>2023</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          [26]
          <string-name>
            <given-names>Q.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Tao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>An</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Jiang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Wu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Feng</surname>
          </string-name>
          ,
          <source>Lawyer llama technical report, arXiv preprint arXiv:2305.15062</source>
          (
          <year>2023</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          [27]
          <string-name>
            <given-names>J.</given-names>
            <surname>Cui</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Yan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Yuan</surname>
          </string-name>
          , Chatlaw:
          <article-title>Open-source legal large language model with integrated external knowledge bases</article-title>
          ,
          <source>arXiv preprint arXiv:2306.16092</source>
          (
          <year>2023</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          [28]
          <string-name>
            <given-names>J.</given-names>
            <surname>Devlin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Chang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Toutanova</surname>
          </string-name>
          ,
          <article-title>BERT: pre-training of deep bidirectional transformers for language understanding</article-title>
          , in: J.
          <string-name>
            <surname>Burstein</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Doran</surname>
          </string-name>
          , T. Solorio (Eds.),
          <source>Proceedings of the</source>
          <year>2019</year>
          <article-title>Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, NAACL-HLT 2019, Minneapolis</article-title>
          , MN, USA, June 2-7,
          <year>2019</year>
          , Volume
          <volume>1</volume>
          (Long and Short Papers),
          <source>Association for Computational Linguistics</source>
          ,
          <year>2019</year>
          , pp.
          <fpage>4171</fpage>
          -
          <lpage>4186</lpage>
          . URL: https://doi.org/10.18653/v1/n19-
          <fpage>1423</fpage>
          . doi:
          <volume>10</volume>
          .18653/v1/n19-
          <fpage>1423</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          [29]
          <string-name>
            <given-names>T.</given-names>
            <surname>Jung</surname>
          </string-name>
          ,
          <string-name>
            <surname>J.-K. Kim</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Lee</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Kang</surname>
          </string-name>
          ,
          <article-title>Cluster-guided label generation in extreme multi-label classification</article-title>
          ,
          <source>in: EACL</source>
          <year>2023</year>
          ,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref30">
        <mixed-citation>
          [30]
          <string-name>
            <given-names>I.</given-names>
            <surname>Loshchilov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Hutter</surname>
          </string-name>
          ,
          <article-title>Decoupled weight decay regularization</article-title>
          ,
          <source>in: International Conference on Learning Representations</source>
          ,
          <year>2017</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref31">
        <mixed-citation>
          [31]
          <string-name>
            <given-names>H.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Tam</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Muqeeth</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Mohta</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Bansal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Rafel</surname>
          </string-name>
          ,
          <article-title>Few-shot parameter-eficient finetuning is better and cheaper than in-context learning</article-title>
          ,
          <year>2022</year>
          . arXiv:
          <volume>2205</volume>
          .
          <fpage>05638</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref32">
        <mixed-citation>
          [32]
          <string-name>
            <given-names>E. J.</given-names>
            <surname>Hu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Shen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Wallis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Allen-Zhu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Chen</surname>
          </string-name>
          , Lora:
          <article-title>Low-rank adaptation of large language models</article-title>
          ,
          <source>CoRR abs/2106</source>
          .09685 (
          <year>2021</year>
          ). URL: https:// arxiv.org/abs/2106.09685. arXiv:
          <volume>2106</volume>
          .
          <fpage>09685</fpage>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>