<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta>
      <journal-title-group>
        <journal-title>X (A. Graciotti);</journal-title>
      </journal-title-group>
      <issn pub-type="ppub">1613-0073</issn>
    </journal-meta>
    <article-meta>
      <title-group>
        <article-title>Retrieval for Long-Tail Knowledge Extraction</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Nicolas Lazzari</string-name>
          <email>nicolas.lazzari3@unibo.it</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Arianna Graciotti</string-name>
          <email>arianna.graciotti@unibo.it</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Valentina Presutti</string-name>
          <email>valentina.presutti@unibo.it</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="editor">
          <string-name>Long-tail Knowledge Extraction, Information Retrieval, Entity Linking, KGs, LLMs</string-name>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Computer Science Department, University of Pisa</institution>
          ,
          <addr-line>Largo B. Pontecorvo, 3, Pisa 56127</addr-line>
          ,
          <country country="IT">Italy</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>LILEC, University of Bologna</institution>
          ,
          <addr-line>Via Cartoleria, 5, Bologna 40124</addr-line>
          ,
          <country country="IT">Italy</country>
        </aff>
      </contrib-group>
      <volume>000</volume>
      <fpage>0</fpage>
      <lpage>0002</lpage>
      <abstract>
        <p>Information retrieval is a critical step in frameworks that extract structured knowledge from unstructured text. It is essential for NLP tasks such as open domain question answering, entity linking, and relation extraction. Modern retrieval frameworks often rely on a retriever component, typically based on a bi-encoder architecture. The bi-encoder encodes the input text and the knowledge base, calculating dot product similarities to find relevant candidates. Bi-encoders are usually based on pre-trained language models or learned text embedding models. Such models rely heavily on the training data and perform sub-optimally in domain-specific tasks or scenarios involving unpopular entities and long-tail relations. This is known as popularity bias. We propose a method that leverages explicit knowledge from curated knowledge graphs, such as Wikidata, to improve retrieval performance by filtering implausible candidates. Plausibility is defined through Answer Set Programming and is independent of the retriever. We show that it consistently improves the accuracy of the retrieval system on less popular entities by evaluating benchmarks of historical documents.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        Information retrieval (IR) is a fundamental task in Artificial Intelligence, with applications in Natural
Language Processing (NLP) and image processing. It is used to extract structured knowledge from
unstructured text or train complex classifiers on unsupervised data. Recently, interest in IR has grown
due to its role in Retrieval Augmented Generation (RAG) methods [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ], which can significantly enhance
diferent aspects of Large Language Models.
      </p>
      <p>
        Modern IR methods combine two neural network architectures: a bi-encoder and a cross-encoder [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ].
The bi-encoder encodes documents into dense vector representations that reflect document similarity [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ].
It is used to retrieve relevant documents from a Knowledge Base (KB) based on the vector representations
of both the input and the documents in the KB. Relevance is defined as a function of the similarity
between two vectors, with similarity and distance metrics serving as proxies for relevance. The
crossencoder then takes the candidates retrieved by the bi-encoder and ranks them according to the task
at hand. For example, in Question Answering (QA), an input query (the question) is used to retrieve
relevant documents from the KB. The bi-encoder thus acts as a filtering process on the KB, allowing the
cross-encoder to rank only a subset of the entire KB.
      </p>
      <p>Although similarity and distance measures between vectors have yielded impressive results, they
often sufer a significant drawback:</p>
      <p>
        popularity bias [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. This refers to the tendency of these measures
to favour frequently occurring documents while underperforming on less common ones. These less
common documents, along with the entities and relations they contain, are typically referred to as
      </p>
      <p>CEUR</p>
      <p>ceur-ws.org</p>
      <p>
        Popularity bias has been widely studied from diverse perspectives, including its impact on LLMs’
zero- and few-shot learning [
        <xref ref-type="bibr" rid="ref5 ref6 ref7">5, 6, 7</xref>
        ], training data memorization [
        <xref ref-type="bibr" rid="ref8 ref9">8, 9</xref>
        ], and privacy concerns [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ]. It is
also linked to other types of bias at the level of training data and model predictions, such as gender and
origin biases [
        <xref ref-type="bibr" rid="ref11 ref12">11, 12</xref>
        ]. For instance, popularity bias has been observed to undermine the performance of
popular LLMs (e.g. ChatGPT [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ]) on domain-specific tasks, such as QA on historical named entities
related to music, particularly when questions involve women’s Wikipedia biographies [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ].
      </p>
      <p>Popularity bias is a direct consequence of the bi-encoder architecture. Bi-encoders are heavily
dependent on their training data, often used in an unsupervised fashion, and are therefore prone to
over-representing popular documents while neglecting less common ones. If the bi-encoder is biased
toward popular documents, less popular documents have a reduced chance of being analyzed by the
cross-encoder. This becomes particularly problematic in tasks that require the bi-encoder to prioritize
recall over precision, such as Entity Linking (EL) or domain-specific QA.</p>
      <p>
        Our approach aims to mitigate these issues by enforcing logical plausibility in the bi-encoder model.
Instead of comparing an input document to the entire KB, we only consider documents that meet a set
of logical constraints grounded in trusted Knowledge Graphs (KGs), such as Wikidata [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ]. We define
the logical plausibility of a document using Answer Set Programming (ASP), a logic programming
technique that relies on stable model semantics and specialized solvers to handle large amounts of
data and constraints. Unlike similar approaches, our method is independent of the bi-encoder and
cross-encoder architectures and requires no additional model training.
      </p>
      <p>
        We experiment with several datasets of historical documents annotated for the EL task. Historical
documents are known for containing long-tail entities, and SotA entity linkers are mainly trained on
contemporary datasets, largely extrapolated from the internet [
        <xref ref-type="bibr" rid="ref16 ref17">16, 17</xref>
        ]. This enables us to evaluate our
approach on benchmarks composed of documents afected by popularity bias in a task highly sensitive
to the bi-encoder’s recall. We assess the performance using IR measures and by analyzing the results of
the retrieval process. Our findings demonstrate that our approach significantly improves the recall of
general-purpose bi-encoders, regardless of their underlying architecture, outperforming specialized
models. Our contribution can be summarized as the proposal of a general method based on ASP that
enhances the recall of an IR system by applying logical plausibility constraints.
      </p>
      <p>The rest of the paper is organized as follows: in Section 2, we review similar approaches that enforce
logical constraints in IR systems and popular bi-encoder-cross encoder architectures for EL. In Section
3 we provide an informal introduction to ASP. In Section 4 we describe our method, and we experiment
with it in Section 5. Finally, in Section 6, we discuss our results and in Section 7, we summarize our
work and highlight future works.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Related works</title>
      <p>In this section, we review the most representative recent works in QA and EL, since they are the ones
mostly influenced by the popularity bias in bi-encoders, by highlighting how they engage with the
problem of long-tail knowledge and the role that the retrieval module of their architectures plays in
addressing such a problem.</p>
      <p>
        In the realm of QA tasks, Kandpal et al. [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] demonstrate a strong correlation between the knowledge
acquired by LLMs and the frequency of that information in their pre-training datasets. LLMs perform
better at answering questions when the required information appears frequently in the pre-training data.
In particular, increasing the model parameters improves knowledge retention while greatly increasing
the efort required to train and maintain the model. RAG systems are a promising approach to mitigate
these limitations. Nonetheless, even when relying on simple retrievers, their efectiveness is sensible to
the distribution of relevant documents [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ].
      </p>
      <p>
        Indeed, Mallen et al. [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ] showed that increasing model size provides limited benefits for less frequent
information. The study demonstrates that RAG can improve LM performance on long-tail data but may
introduce errors for popular entities.
      </p>
      <p>
        Similarly, Sun et al. [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ] demonstrate a consistent decline in LLMs’ QA performance from head
(highly popular) to tail (unpopular) entities, regardless of the LLM power. This poses significant issues
since entities’ popularity is a biased phenomenon. For instance, it has been shown that on tail entities,
LLMs have higher performances when answering questions on men rather than on women [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ].
      </p>
      <p>Another downstream task heavily impacted by retrieval performance is EL. SotA entity linkers
frequently adopt the retriever-reader paradigm, where retrieval quality directly afects the linking
process. As a result, EL sufers from the challenges of long-tail knowledge and popularity bias. The
dificulty in retrieving less popular entities can lead to errors in linking, particularly when the target
entities are underrepresented in the KB.</p>
      <p>
        For instance, BLINK [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ], a widely-used retrieval-based entity linker that leverages Pre-trained
Language Models (PLMs), has been observed to perform unsatisfactorily on long-tail entities mentioned
in historical documents [
        <xref ref-type="bibr" rid="ref22">22</xref>
        ].
      </p>
      <p>
        Recent developments in EL brought to its reformulation as an inverse open-domain QA task. An
unknown number of questions (corresponding to candidate entities) are retrieved first based on the
input documents. Then the model predicts which portions of the text answers (should be linked to)
the retrieved questions. EntQA [
        <xref ref-type="bibr" rid="ref23">23</xref>
        ] and ReLiK [
        <xref ref-type="bibr" rid="ref24">24</xref>
        ] follow this approach, resulting in state-of-the-art
results. Despite a diferent formulation with respect to traditional retrieval-based models, they still
sufer from the issues induced by popularity bias in the retrieval phase.
      </p>
      <p>
        Similarly to our approach, exploiting contextual information to reduce the candidates considered by
an IR method has been explored in the past. In the context of EL, Tedeschi et al. [
        <xref ref-type="bibr" rid="ref25">25</xref>
        ] leverage NERC
information to enhance the EL process. They enrich entity representations with NER information and
improve candidate selection by using NER to filter out unlikely candidates both during the training
and inference phases. Other similar approaches that exploit type information have been proposed,
including reasoning on large KB [
        <xref ref-type="bibr" rid="ref26">26</xref>
        ] or including Knowledge Graph information when training the
bi-encoder [
        <xref ref-type="bibr" rid="ref27">27</xref>
        ]. However, diferent to our approach, all of these approaches require a dedicated training
procedure and are often architecture dependant. By relying on an expressive logic programming
paradigm independent of the KB, our approach applies to any bi-encoder architecture and any KB.
Moreover, it is possible to enforce logical constraints that are tightly dependent on the dataset at hand.
      </p>
    </sec>
    <sec id="sec-3">
      <title>3. Answer Set Programming</title>
      <p>
        Answer Set Programming (ASP) [
        <xref ref-type="bibr" rid="ref28">28</xref>
        ] is a logic programming technique that aims at solving problems
in a declarative fashion. The programmer specifies a set of rules that characterize the problem in the
form of logical constraints and a set of facts encoding some data in the form of a KB. Using a solver
and automated reasoning techniques, new information is derived based on the asserted facts. Unlike
Prolog, ASP is based on the concept of answer sets. Informally, an answer set is a set of facts that
can be inferred from the asserted ones using the provided rules while maintaining logical consistency
with those rules. In their most general form, ASP programs are NP-complete, meaning that finding the
answer sets to a program is not always computationally feasible. Nonetheless, eficient solvers handling
a large number of rules and facts have been developed (e.g. clingo [
        <xref ref-type="bibr" rid="ref29">29</xref>
        ]). Additionally, modern solvers
support advanced features that are generally not available in Prolog, such as preferences over diferent
answer sets, the use of specialized solvers for numerical constraints, as well as probabilistic [
        <xref ref-type="bibr" rid="ref30">30</xref>
        ] and
neuro-symbolic [
        <xref ref-type="bibr" rid="ref31">31</xref>
        ] extensions. Despite a high expressivity, defining ASP programs is intuitive and can
be done through the use of a Controlled Language [
        <xref ref-type="bibr" rid="ref32">32</xref>
        ], allowing domain experts to directly formalize
logic plausibility constraints.
      </p>
      <p>In this work, we generate facts from the use of the bi-encoder and manually assert rules based on the
domain of the application. The answer set of a program is, hence, the set of candidates that have a high
similarity with an input document and are logically consistent with the constraints imposed by the
domain.</p>
    </sec>
    <sec id="sec-4">
      <title>4. Methodology</title>
      <p>
        Without loss of generality, we will refer to a general bi-encoder model as the function  that takes as
input a document and outputs a vector  ∈ ℝ  and to a general cross-encoder model as the function 
that takes as input two vectors x and y computed using  and outputs a score that approximates the
relevance of the document y ∈ [
        <xref ref-type="bibr" rid="ref1">0, 1</xref>
        ] given the input document x.
      </p>
      <p>The functions  and  can be implemented using diferent techniques, including pre-trained language
models, recurrent neural networks, or transformer models. Their composition results in the IR model  .</p>
      <p>Our approach consists of a filtering process between  and  using the ASP program  , shown in
Figure 1. The program  is composed of two main components: the facts related to the input document
and to the retrieved candidates and the plausibility constraints.</p>
      <p>The plausibility constraints are domain-dependant while the facts depend on the output of the
bi-encoder and the requirement posed by the plausibility constraints. The facts are extracted from
a reference KB, such as a Knowledge Graph. In this work, we rely on the metadata and annotations
provided by the dataset alongside information retrieved from Wikidata. To avoid overloading the
program  we only consider facts related to the most relevant documents found by the bi-encoder.
Even though ASP solvers can handle large quantities of data, this minimizes the impact of the filtering
process in the IR system.</p>
      <p>The program  first enumerates the relevant entities found by the bi-encoder and their data using
binary predicates. The most important predicate is relevant/2, which asserts that a document is
relevant for another document. Depending on the information available, other assertions can be added
to  , such as type/2 to assert the type of the content described in the document, year/2 for the year of
publication of the document and so on. Figure 1 shows an example of facts assertions of  .</p>
      <p>Secondly, the constraints for logical plausibility are asserted. The program  follows a
generateand-test approach to ASP programming. Informally, the solver first generates an answer set where
all relevant documents are considered plausible, using the predicate plausible/2. It then removes
from the answer set all the plausible/2 assertions that are not consistent with the constraints. In the
example of Figure 1, the program  removes all the relevant documents whose type does not match the
input document’s type.</p>
    </sec>
    <sec id="sec-5">
      <title>5. Experiments</title>
      <p>In this section, we apply the methodology described in Section 4 to several datasets containing historical
documents with NERC and EL annotations. Historical documents often include long-tail entities making
them a suitable testing ground for demonstrating to what extent applying logical plausibility constraints
to bi-encoder architectures can improve the performance of these IR modules on long-tail knowledge.
% Generate plausible candidates
{ plausible(X, Y) } :- relevant(X, Y) .
% Define type-plausibility and remove implausible candidates
same_type(X, Y) :- type(X, T), type(Y, T) .
same_type(X, Y) :- relevant(X, Y), not type(X, _) .
:- plausible(X, Y), not same_type(X, Y) .
% Define year-plausibility and remove implausible candidates
compatible_year(X, Y) :- year(X, YX), year(Y, YY), YX &lt;= YY .
compatible_year(X, Y) :- relevant(X, Y), not year(X, _) .
:- plausible(X, Y), not compatible_year(X, Y) .
% Compute the answer set with the highest number of plausible candidates
#maximize { 1, X : plausible(X, _) }.</p>
      <p>Listing 1: ASP program  used to filter implausible candidates.</p>
      <p>We experiment with HIPE-2020 (Section 5.1), MHERCL (Section 5.2), AjMC (Section 5.3) and
TopRes19th (Section 5.4) using diferent bi-encoders to assess the method’s efectiveness. We ignore
documents whose entity is labelled as NIL.</p>
      <p>We evaluate the output by computing the recall on subsets of diferent lengths. An output is considered
correct if the target entity is within that subset. This metric does not evaluate the final link but rather
measures how reliable the results of the bi-encoder are. A high recall on a subset means that the
cross-encoder can re-rank the results to perform EL. Clearly, this is impossible if the target document
is not within the ones retrieved. In other words, we measure the ability of our method to filter out
irrelevant entities such that unpopular but plausible ones emerge.</p>
      <p>Moreover, we qualitatively evaluate the results by comparing them to the documents retrieved by
ReLiK. For each dataset, we report an example in which ReLiK is able to retrieve the correct candidate
while our filtering method fails and vice versa.</p>
      <p>
        KB specifications. We use the KILT KB [
        <xref ref-type="bibr" rid="ref33">33</xref>
        ] as our reference to construct the entity index, which
includes 5.9 million entities and serves as the foundation for several other retrieval systems [
        <xref ref-type="bibr" rid="ref21 ref23 ref24">21, 23, 24</xref>
        ].
Each entity’s textual representation combines its title and opening text from Wikipedia.
      </p>
      <p>We extract additional information from Wikidata for each entity in KILT, focusing on temporal and
type information1.</p>
      <sec id="sec-5-1">
        <title>We manually map the entity types from Wikidata to the NERC information available in each dataset2.</title>
        <p>This mapping ensures that logical plausibility filters tailored to each dataset can be crafted and applied
during the EL process.</p>
        <p>Filters. For all the datasets, we implement the logical plausibility filters by relying on an ASP program
 that leverages time and type information. Namely, we filter out implausible candidates from a type
and a time perspective. A candidate is considered type-plausible if the entity it describes matches the
classification of the named entity at hand, while it is considered year-plausible if the date of the entity
precedes the one of the entity at hand. For example, if the gold NERC information given in a dataset is
a location, we consider implausible all those candidates classified as persons in Wikidata. Similarly,
if the entity at hand is mentioned in a periodical issued on a given date, we consider implausible a
candidate whose date of birth, or inception date, happened later than that date. If type or (respectively
1We use property P31 for type information. We use various time-related properties, ranging from the highly specific P569
(date of birth) to the more generic P585 (point in time) for time information
2The mapping is done according to a pre-defined taxonomy of named entity types available in each dataset. For example,
the Wikidata type Q5 (human) is mapped to the NERC type person in MHERCL and HIPE-2020 datasets. The Wikidata type
Q747074 (commune of Italy) is mapped to the NERC types 'city', 'location' in MHERCL, and loc in HIPE-2020, etc.
year) information is not available, it is considered type-plausible (year-plausible). The program  is
reported in Listing 1.</p>
        <p>
          Sentence Embeddings for entity linking. We rely on sentence embeddings [
          <xref ref-type="bibr" rid="ref34">34</xref>
          ] to implement the
function  , namely on MPNet3 [
          <xref ref-type="bibr" rid="ref35">35</xref>
          ], a distilled version of RoBERTa4 [
          <xref ref-type="bibr" rid="ref36">36</xref>
          ] and MiniLM5 [
          <xref ref-type="bibr" rid="ref37">37</xref>
          ]. Since these
models are not explicitly trained for the EL task, they retrieve multiple documents when a sentence
contains multiple named entities. To overcome this limitation, we compute two distinct vectors for
the sentence and the mention and linearly project the sentence embedding onto the direction of the
mention embedding. Formally, given a sentence  and a mention  we compute the dense vector v as a
scaled version of the vector () where the scale factor is computed as the ratio between dot product
⟨(), ()⟩ and the dot product ⟨(), ()⟩
v =
() ⋅ ()
() ⋅ ()
().
        </p>
        <p>(1)</p>
        <p>This allows us to retain the generality of the embedding model while obtaining a vector representation
better suited to retrieve documents related to a mention. We compare our results with a retriever model
specifically trained for entity linking, ReLiK. Since its retriever does not include the use of an explicit
mention, we craft its input using the template mention: &lt;m&gt; sentence: &lt;s&gt; as input where &lt;s&gt; is
the sentence of a document and &lt;m&gt; the mention to be linked. We retrieve a total of 300 candidates
using both general bi-encoders and ReLiK.
5.1. HIPE-2020</p>
        <sec id="sec-5-1-1">
          <title>Model</title>
          <p>0.42
0.65
0.39
0.59
0.31
0.51
0.62
0.91
0.58
0.87
0.49
0.84
0.93</p>
          <p>The HIPE-2020 dataset [38, 39] comprises historical newspaper articles and classic commentaries in
3 diferent languages (French, German, and English) published in the 19th and 20th centuries. In this
work, we rely on the English dataset (specifically, on the test set 6, which has been designed to evaluate
EL methods in the domain of historical knowledge and whose annotations include NERC.</p>
          <p>Table 1 reports the results obtained. ReLiK performs best when only 10 candidates are taken into
account. However, it performs worse when compared to simpler bi-encoders with the filtering process,
which can extract all the relevant entities within the first 200 candidates, with most already retrieved
within the first 100 candidates.</p>
          <p>Table 2 analyses two example errors in a comparative overview. In the first sentence, only ReLiK
retrieves the target candidate. Altough most of the candidates retrieved by MPNet are related to Europe,
they do not refer to the correct entity. Even though it is dificult to interpret why the similarity of those
3https://huggingface.co/sentence-transformers/all-mpnet-base-v2
4https://huggingface.co/sentence-transformers/all-distilroberta-v1
5https://huggingface.co/nreimers/MiniLM-L6-H384-uncased
6HIPE-2020 English test set is available for download at https://github.com/hipe-eval/HIPE-2022-data/blob/main/data/v2.1/
hipe2020/en/HIPE-2022-v2.1-hipe2020-test-en.tsv</p>
          <p>Europe [Q46], England [Q21], Europe (band) [Q185144], Cowhide [Q12492880], ...</p>
        </sec>
        <sec id="sec-5-1-2">
          <title>Somewhere In Europe [Q18230653], Saint-Setiers [Q625213], List of paramilitary groups [Q25344947], In Europe [Q6009397], Europe Today [Q56222917], ... Saint-Setiers [Q625213], Padiyam [Q7123802], [Q1064023], Southern Europe [Q27449], European Regions [Q6470668], Geography of the European Union [Q941769], ...</title>
        </sec>
        <sec id="sec-5-1-3">
          <title>HIPE-2020 newspaper, 1910</title>
        </sec>
        <sec id="sec-5-1-4">
          <title>Why does Great Britian (Q23666) buy its oatmeal of us ?</title>
        </sec>
        <sec id="sec-5-1-5">
          <title>HIPE-2020 newspaper, 1890</title>
        </sec>
        <sec id="sec-5-1-6">
          <title>In England and other parts of Europe (Q21), horseshoes are now in use, made of cowhide instead of iron.</title>
        </sec>
        <sec id="sec-5-1-7">
          <title>Great Briton Award [Q5598898], Great British Chefs [Q5598892], Greatest Britons</title>
          <p>[Q5600941], Britons [Q842438], British national identity [Q3402148], ...</p>
        </sec>
        <sec id="sec-5-1-8">
          <title>Great Britain (disambiguation) [Q294011], Britain and Ireland [Q5598828], British countries</title>
          <p>[Q4971318], Great Britain [Q23666], ...</p>
        </sec>
        <sec id="sec-5-1-9">
          <title>Great Britain [Q23666], Britain (place name) [Q3240725], Great Britain at the Hopman</title>
          <p>Cup [Q5598861], Britiande [Q64441], ...
documents is higher when compared to the correct document, one possible reason might lie in the use
of the linear projection described in Section 1. Sentence embeddings are not directly optimized for
this use, and while we observed good results, there might be cases for which this approach outputs
are not well defined. Nonetheless, MPNet can retrieve the correct candidate within the 300 retrieved
documents, as can be inferred from Table 1.</p>
          <p>In the second sentence, ReLiK retrieves type implausible candidates, such as the organization
Q5598898 (Great Briton Award) and the work of art Q5598899 (Great British Menu). MPNet also
retrieves implausible candidates, but they are efectively filtered out through the program  .
5.2. MHERCL</p>
        </sec>
        <sec id="sec-5-1-10">
          <title>Model</title>
          <p>0.38
0.72
0.39
0.68
0.27
0.68
0.65
0.92
0.58
0.87
0.49
0.89
0.93
0.73
0.96
0.71
0.96
0.61
0.95
0.96
0.88
0.99
0.82
0.99
0.78
0.99</p>
          <p>The Musical Heritage Historical named Entities Recognition, Classification and Linking (MHERCL)
benchmark7 is a dataset for the historical EL task composed of manually annotated sentences selected
from the English Periodicals module of the Polifonia Textual Corpus8 (PTC), covering documents from
7https://github.com/polifonia-project/historical-entity-linking/tree/main/benchmark
8https://github.com/polifonia-project/Polifonia-Corpus</p>
        </sec>
        <sec id="sec-5-1-11">
          <title>The Musical Times, 1873</title>
        </sec>
        <sec id="sec-5-1-12">
          <title>He also performed two of Mendelssohn (Q46096)’s</title>
        </sec>
        <sec id="sec-5-1-13">
          <title>The Harmonicon, 1828</title>
        </sec>
        <sec id="sec-5-1-14">
          <title>Sontag (Q64098) left Francfort for Brussels on the Ist of December.</title>
        </sec>
        <sec id="sec-5-1-15">
          <title>Felix Mendelssohn [Q46096], Francesco von Mendelssohn [Q1441287], Arnold</title>
        </sec>
        <sec id="sec-5-1-16">
          <title>Mendelssohn [Q537538], Fanny Mendelssohn [Q57286], Moses Mendelssohn [Q76997], ...</title>
        </sec>
        <sec id="sec-5-1-17">
          <title>Mendelssohn (disambiguation) [Q1794038], John Mendelsohn [Q1701059], List of compositions by Felix Mendelssohn [Q179039], Francesco von Mendelssohn [Q1441287], Robert Mendelsohn [Q7347623, ...</title>
        </sec>
        <sec id="sec-5-1-18">
          <title>Abraham Mendelssohn Bartholdy [Q70138], Arnold Mendelssohn [Q537538], Joseph</title>
        </sec>
        <sec id="sec-5-1-19">
          <title>Mendelssohn [Q96515], Fanny Mendelssohn [Q57286], Moses Mendelssohn [Q76997], ... Top 10 Brussels [Q240], Sontag [Q47519541], Alan Sontag [Q945286], Susan Sontag [Q152824], Belfort [Q171545], ...</title>
          <p>1823 to 1900. The issue date, provided in the metadata for each sentence of the dataset, is used as a
reference point for the document date, while the type of each mention is annotated in the gold NERC
data.</p>
          <p>Results are shown in Table 3. Similar to the results of HIPE-2020, ReLiK performs best on the first 10
candidates but is consistently outperformed by the ASP-based method when more candidates are taken
into account.</p>
          <p>Table 4 analyses two example errors. In the first sentence, only ReLiK retrieves the correct candidate.
It can be noted, however, that List of compositions by Felix Mendelssohn is retrieved, which is
intuitively close to the correct mention. Similar to HIPE-2020’s error, this is caused by the sentence
embeddings and the linear projection. In the second sentence, ReLiK retrieves type implausible candidates,
such as the city Q240 (Brussels), and time implausible candidates, such as Q945286 (Alan Sontag),
born in 1946, and Q152824 (Susan Sontag), born in 1933 (the issue date of the periodical from which
the sentence is taken is 1828). On the other hand, the plausibility filters allow MPNet to retrieve the
correct entity, which is Q64098 (Henriette Sontag), mainly by leveraging the time constraint.
5.3. AjMC</p>
        </sec>
      </sec>
      <sec id="sec-5-2">
        <title>The Sophocles’ Ajax: a Commentary on Commentaries (AjMC)9 is a dataset for historical EL composed</title>
        <p>of manually annotated documents from the 19th century containing commentaries of the Ajax Greek
tragedy by Sophocles. Those documents contain a high density of named entities since they seek to
give a complete summary of the tragedy while comparing it to other works.</p>
        <p>Results are shown in Table 5. Similarly to previous datasets, ReLiK performs better on few documents
considered and filtered bi-encoders perform best when additional entities are considered. However, it is
worth noticing that some models reach a perfect recall within the first 50 candidates considered.
Moreover, distill-RoBERTa reaches a perfect recall even without filters when 200 candidates are considered
9https://mromanello.github.io/ajax-multi-commentary/
0.90
0.93
AFC Ajax [Q81888], Ajax the Great [Q172725], Ajax (horse) [Q4699589], Ajax II [Q4699606],
Races [Q483225], ...</p>
        <sec id="sec-5-2-1">
          <title>Ajax [Q169527], Ajax Futebol Clube [Q4699604], Ajax Life [Q16835657], Ajax (cleaning product) [Q2828856], Jong Ajax [Q1770361], ... Ajax, Missouri [Q28103438], OpenAjax Alliance [Q1330650], AjaxView [Q4699582], ... AjMC, 1881</title>
        </sec>
        <sec id="sec-5-2-2">
          <title>The article is not added to θεός elsewhere in Sophocles without special reason, and the conjecture of Schndw .</title>
          <p>(Q70043)</p>
        </sec>
        <sec id="sec-5-2-3">
          <title>Acts of Andrew and Matthias [Q3374647], Antediluvian [Q4771131], Wḫdw [Q22936426], Phrygian Sibyl [Q928835], Gothic runes [Q1920146], ...</title>
        </sec>
        <sec id="sec-5-2-4">
          <title>SCW [Q353018], Schwebel [Q2254629], Scow (disambiguation) [Q59763596], Schmalkald [Q7431770], Schnepf [Q7431906], ...</title>
        </sec>
        <sec id="sec-5-2-5">
          <title>Wiener Schmäh [Q252069], Schnakenbach [Q2246950], Schwelge [Q832232], August Schmar</title>
          <p>sow [Q109788], Friedrich Wilhelm Schneidewin [Q70043], ...
(diferently than ReLiK). This might be attributed to the low number of documents in the dataset (167)
and their nature. While the documents’ are historical, the 19th-century language registry is similar
enough to contemporary language that the language models can interpret it correctly.</p>
          <p>In Table 6, we qualitatively report on two sample sentences. In the first sentence, ReLiK retrieves the
correct candidate, while MPNet does not. However, it is possible to see how both models prefer popular
entities (such as the football team AFC Ajax) despite their little relevance to the sentence. Additionally,
it is possible to see that missing information influences the filters’ performances. The type of OpenAjax
Alliance (ballot initiative) is not mapped to any type within those of AjMC and is hence ignored,
and there is no date assertion on Wikidata. The resulting entity has no type or year asserted in the
program  ; therefore is conservatively considered correct. In the second sentence, ReLiK struggles with
OCR errors that impact the superficial mention of the named entity. Moreover, some of the retrieved
examples are not plausible from the type perspective, such as Q928835 (Phrygian Sibyl), an ancient
Greek oracle, and Q1920146 (Gothic runic inscriptions), the elder Futhark writings. On the other
hand, the plausibility filters allow MPNet to exclude implausible entities and robustly retrieve the gold
annotation, which is Q70043 (Friedrich_Wilhelm_Schneidewin), a German classical scholar born in
1810.
5.4. TopRes19th
0.90</p>
          <p>TopRes19th, 1867</p>
        </sec>
        <sec id="sec-5-2-6">
          <title>THE MINING MARKET. London (Q84), Thursday Evening. There was very little business doing—dealers being</title>
          <p>busy with the fortnightly settlement.</p>
        </sec>
        <sec id="sec-5-2-7">
          <title>London [Q84], South Crofty [Q2304399], Wheal Metal [Q7991798], Wheal Eliza Mine</title>
          <p>[Q16903195], Wheal Vor [Q7991802], ...</p>
          <p>In London [Q6009848], London, Belgrade [Q6669759], London City [Q6670236], This Is
London [Q7785842], Londons [Q261303], ...</p>
        </sec>
        <sec id="sec-5-2-8">
          <title>Little London, West Yorkshire [Q30006745], BBC London [Q902373], Education in London [Q5341069], .london [Q15928102], History of London [Q1126401], ... TopRes19th, 1863</title>
        </sec>
        <sec id="sec-5-2-9">
          <title>And that an AUDIT for the RESERVED and CHIEF RENTS for the Manor of Stayley, in the county of Chester</title>
          <p>(Q23064), will be holden at the Eagle Inn, in Stalybridge, on Thursday, the 7th day of May next, between the
hours of Eleven and Two o clock, on which days the tenants are requested to pay their rents.</p>
        </sec>
        <sec id="sec-5-2-10">
          <title>Chester [Q170263], Justice of Chester [Q616310], Earl of Chester [Q1277249], Earl of Warrington [Q5326386], Exchequer of Chester [Q5419617], ...</title>
        </sec>
        <sec id="sec-5-2-11">
          <title>Chester County [Q227112], Chester County Courthouse [Q1070703], Chester County History</title>
          <p>Center [Q19866503], New Chester [Q16462307], Diocese of Chester [Q543301], ...</p>
        </sec>
        <sec id="sec-5-2-12">
          <title>Chester Rural District [Q5093705], 1724 Chester Courthouse [Q4552563], Chester County,</title>
        </sec>
        <sec id="sec-5-2-13">
          <title>Pennsylvania [Q27840], Chester (town), Orange County, New York [Q2756901], Cheshire</title>
          <p>[Q23064], ...</p>
        </sec>
      </sec>
      <sec id="sec-5-3">
        <title>The TopRes19th10 dataset is a collection of English historical newspaper articles from the British</title>
        <p>Library (18C-19C), whose annotations focus on toponyms entities aligned to their Wikidata entry.</p>
        <p>Results are shown in Table 7. Coherently with the previous datasets, ReLiK performs best in the
top 10 candidates, but it is outperformed by the sentence embedding models implementing ASP filters
process when more candidates are considered. Notably, most of the bi-encoders quickly reach a perfect
recall score, with MiniLM always retrieving the relevant candidate in the first 50 candidates. This is
due to the specificity of the domain. Since only toponyms are taken into account, the program  always
iflters out every entity that does not represent a location. This optimal scenario showcases the high
impact ASP constraints play when domain knowledge can be exploited.
10https://mromanello.github.io/ajax-multi-commentary/</p>
        <p>Table 8 shows qualitative errors on two sentence samples. In the first sentence, similarly to the
previous datasets, ReLiK performs better. The candidates retrieved by MPNet (with or without filters)
are syntactically and conceptually similar to the target entity. In this case, the candidates seem to sufer
from an inverted popularity bias: the popularity of the entity London should shadow other entities. Even
though this is not desirable in general, it is beneficial for retrieving entities with little risk of ambiguity.
In the second sentence, ReLiK struggles with type implausible candidates, such as the judicial position
Q616310 (Justice of Chester) and the noble title Q1277249 (Earl of Chester). On the other hand,
the plausibility filters allow MPNet to retrieve the gold annotation, which is Q23064 (Cheshire), a
ceremonial county in England, United Kingdom.</p>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>6. Discussion</title>
      <p>The results of Section 5 clearly show that simple sentence embedding methods obtain competitive
results when coupled with logical constraint and are able to consistently outperform more complex
approaches when more than 10 candidates are considered.</p>
      <p>We remark that the embedding models we tested are not trained to solve the entity linking task.
Similarities between two vectors are optimized such that the whole content of the original documents
is semantically similar. Nonetheless, by relying on a simple linear projection, the resulting similarity
can retrieve all the relevant documents. Indeed, the sentence embedding methods we tested reached
a perfect recall when 300 candidates were considered on all the datasets. This proves that, although
they have not specifically been fine-tuned for entity-linking, they provide a solid base as bi-encoders.
Using logical constraint is a robust method that can filter out most unrelated entities. While using
an ASP solver introduces an overhead in the overall system, it provides a highly expressive language
that enables domain experts to express and enforce trivial constraints that significantly improve the
ifnal results. Moreover, by relying on ASP it is possible to implement powerful automated reasoning
techniques without significant efort that would be required for ad-hoc solutions. For instance, it is
possible to enhance the type plausibility constraint by defining a taxonomy of types. An example
application is to use ASP to automatically infer whether two types are related by a common ancestor
and further filter the candidates based on it.</p>
      <p>On the weak side, while the ASP solver provides great expressivity, it requires reliable facts. While
structured KBs, such as Wikidata, can be used to that extent, they are not always straightforward to
integrate with any dataset. In our experiments, we manually aligned Wikidata’s types to the NERC
classes of each dataset. Although this resulted in good performances, the alignment phase is not optimal.
A more advanced method is required to align the structured KB to the structured information provided
by the dataset.</p>
      <p>Moreover, some tasks might not include metadata or structured information that can be aligned to
Wikidata, such as open-ended question answering. An interesting approach is to automatically classify
those datasets and exploit the probabilistic extensions of ASP to compute probably plausible entities - i.e.
entities with a high joint probability of being relevant for the document and satisfying the constraints.</p>
    </sec>
    <sec id="sec-7">
      <title>7. Conclusion and Future Work</title>
      <p>This work presented a general method to integrate highly expressive logical constraints within a retrieval
model. We experimented with this approach on several datasets annotated for entity linking and showed
that the resulting method outperforms simple sentence embeddings and specialized methods.</p>
      <p>Although our approach is general, it lends itself to tasks involving structured metadata or structured
knowledge bases. Future works include extending this approach to documents that are only composed of
unstructured content by employing automatic classification methods, such as automatically classifying
named entities in a dataset that lacks gold NERC annotations. Additionally, given the promising results
in the entity linking task, future works include extending SotA retrieval-based entity linkers, such as
ReLiK and EntQA, to leverage the logical constraints, both during inference and during the training
phase, as an additional method to identify negative samples.</p>
      <p>
        Moreover, testing on diferent tasks that are highly sensitive to recall in the retrieval phase, such as
Question Answering, is an interesting extension, particularly on datasets whose question-answer are
ranked according to the popularity of the entities contained in them [
        <xref ref-type="bibr" rid="ref14 ref19 ref20">19, 20, 14</xref>
        ].
      </p>
    </sec>
    <sec id="sec-8">
      <title>Acknowledgments</title>
      <p>This project has received funding from the European Union’s Horizon 2020 research and innovation
programme under grant agreement No 101004746 and the FAIR – Future Artificial Intelligence Research
foundation as part of the grant agreement MUR n. 341.
ing Systems 33: Annual Conference on Neural Information Processing Systems 2020, NeurIPS
2020, December 6-12, 2020, virtual, 2020. URL: https://proceedings.neurips.cc/paper/2020/hash/
3f5ee243547dee91fbd053c1c4a845aa-Abstract.html.
[38] M. Ehrmann, M. Romanello, A. Flückiger, S. Clematide, Overview of CLEF HIPE 2020: Named Entity
Recognition and Linking on Historical Newspapers, in: Experimental IR Meets Multilinguality,
Multimodality, and Interaction: 11th International Conference of the CLEF Association, CLEF 2020,
Thessaloniki, Greece, September 22–25, 2020, Proceedings, Springer-Verlag, Berlin, Heidelberg,
2020, p. 288–310. doi:10.1007/978-3-030-58219-7_21.
[39] M. Ehrmann, M. Romanello, A. Fluckiger, S. Clematide, Extended Overview of CLEF HIPE
2020: Named Entity Processing on Historical Newspapers, in: Working Notes of CLEF 2020
Conference and Labs of the Evaluation Forum, volume 2696, Thessaloniki, Greece, 2020, p. 38.
doi:10.5281/zenodo.4117566.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>P.</given-names>
            <surname>Lewis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Perez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Piktus</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Petroni</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Karpukhin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Goyal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Küttler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Lewis</surname>
          </string-name>
          , W.-t. Yih,
          <string-name>
            <given-names>T.</given-names>
            <surname>Rocktäschel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Riedel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Kiela</surname>
          </string-name>
          ,
          <article-title>Retrieval-augmented generation for knowledge-intensive nlp tasks</article-title>
          ,
          <source>in: Proceedings of the 34th International Conference on Neural Information Processing Systems</source>
          , NIPS '20, Curran Associates Inc.,
          <string-name>
            <surname>Red</surname>
            <given-names>Hook</given-names>
          </string-name>
          ,
          <string-name>
            <surname>NY</surname>
          </string-name>
          , USA,
          <year>2020</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>S.</given-names>
            <surname>Humeau</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Shuster</surname>
          </string-name>
          , M.
          <article-title>-</article-title>
          <string-name>
            <surname>A. Lachaux</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Weston</surname>
          </string-name>
          , Poly-encoders:
          <article-title>Transformer architectures and pre-training strategies for fast and accurate multi-sentence scoring</article-title>
          ,
          <year>2020</year>
          . URL: https://arxiv.org/ abs/
          <year>1905</year>
          .
          <year>01969</year>
          . arXiv:
          <year>1905</year>
          .
          <year>01969</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>D.</given-names>
            <surname>Gillick</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Kulkarni</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Lansing</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Presta</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Baldridge</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Ie</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Garcia-Olano</surname>
          </string-name>
          ,
          <article-title>Learning dense representations for entity retrieval</article-title>
          , in: M.
          <string-name>
            <surname>Bansal</surname>
            ,
            <given-names>A</given-names>
          </string-name>
          . Villavicencio (Eds.),
          <source>Proceedings of the 23rd Conference on Computational Natural Language Learning (CoNLL)</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Hong Kong, China,
          <year>2019</year>
          , pp.
          <fpage>528</fpage>
          -
          <lpage>537</lpage>
          . URL: https://aclanthology.org/K19-1049. doi:
          <volume>10</volume>
          . 18653/v1/
          <fpage>K19</fpage>
          - 1049.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>N.</given-names>
            <surname>Kandpal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Deng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Roberts</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Wallace</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Rafel</surname>
          </string-name>
          ,
          <article-title>Large language models struggle to learn long-tail knowledge</article-title>
          ,
          <source>in: Proceedings of the 40th International Conference on Machine Learning, ICML'23</source>
          , JMLR.org,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>S.</given-names>
            <surname>Shin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.-W.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Ahn</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Kim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Kim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Kim</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Cho</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Park</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.-W.</given-names>
            <surname>Ha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Sung</surname>
          </string-name>
          ,
          <article-title>On the efect of pretraining corpora on in-context learning by a large-scale language model</article-title>
          , in: M.
          <string-name>
            <surname>Carpuat</surname>
          </string-name>
          ,
          <string-name>
            <surname>M.-C. de Marnefe</surname>
            ,
            <given-names>I. V.</given-names>
          </string-name>
          <string-name>
            <surname>Meza Ruiz</surname>
          </string-name>
          (Eds.),
          <source>Proceedings of the</source>
          <year>2022</year>
          <article-title>Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Association for Computational Linguistics</article-title>
          , Seattle, United States,
          <year>2022</year>
          , pp.
          <fpage>5168</fpage>
          -
          <lpage>5186</lpage>
          . URL: https://aclanthology.org/
          <year>2022</year>
          .naacl-main.
          <volume>380</volume>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2022</year>
          .naacl- main.380.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Razeghi</surname>
          </string-name>
          ,
          <string-name>
            <surname>R. L. L. I. au2</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Gardner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Singh</surname>
          </string-name>
          ,
          <article-title>Impact of pretraining term frequencies on few-shot reasoning, 2022</article-title>
          . URL: https://arxiv.org/abs/2202.07206. arXiv:
          <volume>2202</volume>
          .
          <fpage>07206</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>X.</given-names>
            <surname>Han</surname>
          </string-name>
          ,
          <string-name>
            <surname>Y</surname>
          </string-name>
          . Tsvetkov, Orca:
          <article-title>Interpreting prompted language models via locating supporting data evidence in the ocean of pretraining data</article-title>
          ,
          <year>2022</year>
          . URL: https://arxiv.org/abs/2205.12600. arXiv:
          <volume>2205</volume>
          .
          <fpage>12600</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>V.</given-names>
            <surname>Feldman</surname>
          </string-name>
          ,
          <string-name>
            <surname>C. Zhang,</surname>
          </string-name>
          <article-title>What neural networks memorize and why: Discovering the long tail via influence estimation</article-title>
          , in: H.
          <string-name>
            <surname>Larochelle</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Ranzato</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Hadsell</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Balcan</surname>
          </string-name>
          , H. Lin (Eds.),
          <source>Advances in Neural Information Processing Systems</source>
          , volume
          <volume>33</volume>
          ,
          <string-name>
            <surname>Curran</surname>
            <given-names>Associates</given-names>
          </string-name>
          , Inc.,
          <year>2020</year>
          , pp.
          <fpage>2881</fpage>
          -
          <lpage>2891</lpage>
          . URL: https://proceedings.neurips.cc/paper_files/paper/2020/file/ 1e14bfe2714193e7af5abc64ecbd6b46-Paper.pdf.
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>V.</given-names>
            <surname>Feldman</surname>
          </string-name>
          ,
          <article-title>Does learning require memorization? a short tale about a long tail</article-title>
          ,
          <source>in: Proceedings of the 52nd Annual ACM SIGACT Symposium on Theory of Computing, STOC</source>
          <year>2020</year>
          ,
          <article-title>Association for Computing Machinery</article-title>
          , New York, NY, USA,
          <year>2020</year>
          , p.
          <fpage>954</fpage>
          -
          <lpage>959</lpage>
          . URL: https://doi.org/10.1145/ 3357713.3384290. doi:
          <volume>10</volume>
          .1145/3357713.3384290.
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>N.</given-names>
            <surname>Kandpal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Wallace</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Rafel</surname>
          </string-name>
          ,
          <article-title>Deduplicating training data mitigates privacy risks in language models</article-title>
          , in: K. Chaudhuri,
          <string-name>
            <given-names>S.</given-names>
            <surname>Jegelka</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Song</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Szepesvari</surname>
          </string-name>
          , G. Niu, S. Sabato (Eds.),
          <source>Proceedings of the 39th International Conference on Machine Learning</source>
          , volume
          <volume>162</volume>
          <source>of Proceedings of Machine Learning Research, PMLR</source>
          ,
          <year>2022</year>
          , pp.
          <fpage>10697</fpage>
          -
          <lpage>10707</lpage>
          . URL: https://proceedings.mlr.press/ v162/kandpal22a.html.
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>M. A.</given-names>
            <surname>Stranisci</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Damiano</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Mensa</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Patti</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Radicioni</surname>
          </string-name>
          , T. Caselli,
          <article-title>WikiBio: a semantic resource for the intersectional analysis of biographical events, in: Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics</article-title>
          (Volume
          <volume>1</volume>
          :
          <string-name>
            <surname>Long</surname>
            <given-names>Papers)</given-names>
          </string-name>
          ,
          <source>Association for Computational Linguistics</source>
          , Toronto, Canada,
          <year>2023</year>
          , pp.
          <fpage>12370</fpage>
          -
          <lpage>12384</lpage>
          . URL: https://aclanthology. org/
          <year>2023</year>
          .
          <article-title>acl-long</article-title>
          .
          <volume>691</volume>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2023</year>
          .acl- long.691.
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>M.</given-names>
            <surname>Stranisci</surname>
          </string-name>
          , P.-L. Huguet
          <string-name>
            <surname>Cabot</surname>
            , E. Bassignana,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Navigli</surname>
          </string-name>
          ,
          <article-title>Dissecting biases in relation extraction: A cross-dataset analysis on people's gender and origin</article-title>
          , in: A.
          <string-name>
            <surname>Faleńska</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Basta</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <article-title>Costa-jussà,</article-title>
          <string-name>
            <given-names>S.</given-names>
            <surname>Goldfarb-Tarrant</surname>
          </string-name>
          ,
          <string-name>
            <surname>D.</surname>
          </string-name>
          Nozza (Eds.),
          <source>Proceedings of the 5th Workshop on Gender Bias in Natural Language Processing (GeBNLP)</source>
          ,
          <source>Association for Computational Linguistics</source>
          , Bangkok, Thailand,
          <year>2024</year>
          , pp.
          <fpage>190</fpage>
          -
          <lpage>202</lpage>
          . URL: https://aclanthology.org/
          <year>2024</year>
          .gebnlp-
          <volume>1</volume>
          .
          <fpage>12</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <surname>OpenAI</surname>
          </string-name>
          , Chatgpt:
          <article-title>Optimizing language models for dialogue, 2022</article-title>
          . URL: https://archive.
          <source>ph/4snnY.</source>
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>A.</given-names>
            <surname>Graciotti</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Presutti</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Tripodi</surname>
          </string-name>
          ,
          <article-title>Latent vs explicit knowledge representation: How ChatGPT answers questions about low-frequency entities</article-title>
          , in: N.
          <string-name>
            <surname>Calzolari</surname>
            , M.-
            <given-names>Y.</given-names>
          </string-name>
          <string-name>
            <surname>Kan</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          <string-name>
            <surname>Hoste</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Lenci</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Sakti</surname>
          </string-name>
          , N. Xue (Eds.),
          <source>Proceedings of the 2024 Joint International Conference on Computational Linguistics</source>
          ,
          <article-title>Language Resources and Evaluation (LREC-COLING 2024), ELRA</article-title>
          and
          <string-name>
            <given-names>ICCL</given-names>
            ,
            <surname>Torino</surname>
          </string-name>
          , Italia,
          <year>2024</year>
          , pp.
          <fpage>10172</fpage>
          -
          <lpage>10185</lpage>
          . URL: https://aclanthology.org/
          <year>2024</year>
          .lrec-main.
          <volume>888</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>D.</given-names>
            <surname>Vrandečić</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Krötzsch</surname>
          </string-name>
          ,
          <article-title>Wikidata: a free collaborative knowledgebase</article-title>
          ,
          <source>Commun. ACM</source>
          <volume>57</volume>
          (
          <year>2014</year>
          )
          <fpage>78</fpage>
          -
          <lpage>85</lpage>
          . URL: https://doi.org/10.1145/2629489. doi:
          <volume>10</volume>
          .1145/2629489.
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>J.</given-names>
            <surname>Hofart</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. A.</given-names>
            <surname>Yosef</surname>
          </string-name>
          , I. Bordino,
          <string-name>
            <given-names>H.</given-names>
            <surname>Fürstenau</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Pinkal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Spaniol</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Taneva</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Thater</surname>
          </string-name>
          , G. Weikum,
          <article-title>Robust disambiguation of named entities in text</article-title>
          ,
          <source>in: Proceedings of the 2011 Conference on Empirical Methods in Natural Language Processing</source>
          , Association for Computational Linguistics, Edinburgh, Scotland, UK.,
          <year>2011</year>
          , pp.
          <fpage>782</fpage>
          -
          <lpage>792</lpage>
          . URL: https://aclanthology.org/D11-1072.
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>A.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Gudipati</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Longpre</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Ling</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Singh</surname>
          </string-name>
          ,
          <article-title>Evaluating entity disambiguation and the role of popularity in retrieval-based NLP, in: Proceedings of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th</article-title>
          <source>International Joint Conference on Natural Language Processing</source>
          (Volume
          <volume>1</volume>
          :
          <string-name>
            <surname>Long</surname>
            <given-names>Papers)</given-names>
          </string-name>
          ,
          <source>Association for Computational Linguistics</source>
          , Online,
          <year>2021</year>
          , pp.
          <fpage>4472</fpage>
          -
          <lpage>4485</lpage>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2021</year>
          .acl- long.345.
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <given-names>S.</given-names>
            <surname>Robertson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Zaragoza</surname>
          </string-name>
          ,
          <article-title>The probabilistic relevance framework: Bm25 and beyond</article-title>
          ,
          <source>Found. Trends Inf. Retr</source>
          .
          <volume>3</volume>
          (
          <year>2009</year>
          )
          <fpage>333</fpage>
          -
          <lpage>389</lpage>
          . URL: https://doi.org/10.1561/1500000019. doi:
          <volume>10</volume>
          .1561/ 1500000019.
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <given-names>A.</given-names>
            <surname>Mallen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Asai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Zhong</surname>
          </string-name>
          ,
          <string-name>
            <surname>R. Das</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Khashabi</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          <string-name>
            <surname>Hajishirzi</surname>
          </string-name>
          , When Not to Trust Language Models: Investigating Efectiveness of Parametric and
          <string-name>
            <surname>Non-Parametric Memories</surname>
          </string-name>
          ,
          <year>2023</year>
          . arXiv:
          <volume>2212</volume>
          .
          <fpage>10511</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <given-names>K.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y. E.</given-names>
            <surname>Xu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Zha</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X. L.</given-names>
            <surname>Dong</surname>
          </string-name>
          , Head-to-Tail: How
          <string-name>
            <surname>Knowledgeable are Large Language Models (LLMs)? A.K.A. Will LLMs Replace Knowledge Graphs</surname>
          </string-name>
          ?,
          <year>2024</year>
          . arXiv:
          <volume>2308</volume>
          .
          <fpage>10168</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <given-names>L.</given-names>
            <surname>Wu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Petroni</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Josifoski</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Riedel</surname>
          </string-name>
          , L. Zettlemoyer,
          <article-title>Scalable Zero-shot Entity Linking with Dense Entity Retrieval</article-title>
          , in: B.
          <string-name>
            <surname>Webber</surname>
            , T. Cohn,
            <given-names>Y.</given-names>
          </string-name>
          <string-name>
            <surname>He</surname>
          </string-name>
          , Y. Liu (Eds.),
          <source>Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP)</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Online,
          <year>2020</year>
          , pp.
          <fpage>6397</fpage>
          -
          <lpage>6407</lpage>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2020</year>
          .emnlp- main. 519.
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [22]
          <string-name>
            <given-names>A.</given-names>
            <surname>Graciotti</surname>
          </string-name>
          ,
          <article-title>Knowledge extraction from multilingual and historical texts for advanced question answering</article-title>
          ,
          <source>in: Proceedings of the Doctoral Consortium at ISWC</source>
          <year>2023</year>
          co
          <article-title>-located with 22st International Semantic Web Conference</article-title>
          ,
          <string-name>
            <surname>ISWC</surname>
          </string-name>
          <year>2023</year>
          , Athens, Greece,
          <year>2023</year>
          . URL: https://ceur-ws.
          <source>org/</source>
          Vol-
          <volume>3678</volume>
          /paper2.pdf.
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [23]
          <string-name>
            <given-names>W.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , W. Hua, K. Stratos,
          <article-title>EntQA: Entity linking as question answering</article-title>
          ,
          <source>in: International Conference on Learning Representations</source>
          ,
          <year>2022</year>
          . URL: https://openreview.net/forum?id=US2rTP5nm_.
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [24]
          <string-name>
            <given-names>R.</given-names>
            <surname>Orlando</surname>
          </string-name>
          , P.-L. Huguet
          <string-name>
            <surname>Cabot</surname>
          </string-name>
          , E. Barba, R. Navigli,
          <article-title>ReLiK: Retrieve and LinK, fast and accurate entity linking and relation extraction on an academic budget</article-title>
          , in: L.
          <string-name>
            <surname>-W. Ku</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Martins</surname>
          </string-name>
          , V. Srikumar (Eds.),
          <source>Findings of the Association for Computational Linguistics ACL</source>
          <year>2024</year>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Bangkok, Thailand and virtual meeting,
          <year>2024</year>
          , pp.
          <fpage>14114</fpage>
          -
          <lpage>14132</lpage>
          . URL: https://aclanthology.org/
          <year>2024</year>
          .findings-acl.
          <volume>839</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          [25]
          <string-name>
            <given-names>S.</given-names>
            <surname>Tedeschi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Conia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Cecconi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Navigli</surname>
          </string-name>
          ,
          <article-title>Named Entity Recognition for Entity Linking: What works and what's next</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>Findings of the Association for Computational Linguistics: EMNLP</source>
          <year>2021</year>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Punta Cana, Dominican Republic,
          <year>2021</year>
          , pp.
          <fpage>2584</fpage>
          -
          <lpage>2596</lpage>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2021</year>
          .findings-emnlp.
          <volume>220</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          [26]
          <string-name>
            <given-names>T.</given-names>
            <surname>Ayoola</surname>
          </string-name>
          , J. Fisher, A. Pierleoni,
          <article-title>Improving entity disambiguation by reasoning over a knowledge base</article-title>
          , in: M.
          <string-name>
            <surname>Carpuat</surname>
            , M. de Marnefe,
            <given-names>I. V. M.</given-names>
          </string-name>
          <string-name>
            <surname>Ruíz</surname>
          </string-name>
          (Eds.),
          <source>Proceedings of the</source>
          <year>2022</year>
          <article-title>Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies</article-title>
          ,
          <string-name>
            <surname>NAACL</surname>
          </string-name>
          <year>2022</year>
          , Seattle, WA,
          <string-name>
            <surname>United</surname>
            <given-names>States</given-names>
          </string-name>
          ,
          <source>July 10-15</source>
          ,
          <year>2022</year>
          , Association for Computational Linguistics,
          <year>2022</year>
          , pp.
          <fpage>2899</fpage>
          -
          <lpage>2912</lpage>
          . URL: https://doi.org/10.18653/v1/
          <year>2022</year>
          .naacl-main.
          <volume>210</volume>
          . doi:
          <volume>10</volume>
          .18653/V1/
          <year>2022</year>
          .NAACL-MAIN.
          <year>210</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          [27]
          <string-name>
            <given-names>M.</given-names>
            <surname>Leszczynski</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. Y.</given-names>
            <surname>Fu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. F.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Ré</surname>
          </string-name>
          ,
          <article-title>Tabi: Type-aware bi-encoders for open-domain entity retrieval</article-title>
          , in: S. Muresan,
          <string-name>
            <given-names>P.</given-names>
            <surname>Nakov</surname>
          </string-name>
          ,
          <string-name>
            <surname>A</surname>
          </string-name>
          . Villavicencio (Eds.),
          <source>Findings of the Association for Computational Linguistics: ACL</source>
          <year>2022</year>
          , Dublin, Ireland, May
          <volume>22</volume>
          -27,
          <year>2022</year>
          , Association for Computational Linguistics,
          <year>2022</year>
          , pp.
          <fpage>2147</fpage>
          -
          <lpage>2166</lpage>
          . URL: https://doi.org/10.18653/v1/
          <year>2022</year>
          .findings-acl.
          <volume>169</volume>
          . doi:
          <volume>10</volume>
          .18653/V1/
          <year>2022</year>
          .FINDINGS-ACL.
          <year>169</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          [28]
          <string-name>
            <given-names>G.</given-names>
            <surname>Brewka</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Eiter</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Truszczynski</surname>
          </string-name>
          ,
          <article-title>Answer set programming at a glance</article-title>
          ,
          <source>Commun. ACM</source>
          <volume>54</volume>
          (
          <year>2011</year>
          )
          <fpage>92</fpage>
          -
          <lpage>103</lpage>
          . URL: https://doi.org/10.1145/2043174.2043195. doi:
          <volume>10</volume>
          .1145/2043174.2043195.
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          [29]
          <string-name>
            <given-names>M.</given-names>
            <surname>Gebser</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Kaminski</surname>
          </string-name>
          , B. Kaufmann, T. Schaub, Clingo = ASP +
          <article-title>control: Preliminary report</article-title>
          ,
          <source>CoRR abs/1405</source>
          .3694 (
          <year>2014</year>
          ). URL: http://arxiv.org/abs/1405.3694. arXiv:
          <volume>1405</volume>
          .
          <fpage>3694</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref30">
        <mixed-citation>
          [30]
          <string-name>
            <given-names>C.</given-names>
            <surname>Baral</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Gelfond</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. N.</given-names>
            <surname>Rushton</surname>
          </string-name>
          ,
          <article-title>Probabilistic reasoning with answer sets</article-title>
          ,
          <source>Theory Pract. Log. Program. 9</source>
          (
          <year>2009</year>
          )
          <fpage>57</fpage>
          -
          <lpage>144</lpage>
          . URL: https://doi.org/10.1017/S1471068408003645. doi:
          <volume>10</volume>
          .1017/ S1471068408003645.
        </mixed-citation>
      </ref>
      <ref id="ref31">
        <mixed-citation>
          [31]
          <string-name>
            <given-names>R. L.</given-names>
            <surname>Geh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Gonçalves</surname>
          </string-name>
          ,
          <string-name>
            <given-names>I. C.</given-names>
            <surname>Silveira</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. D.</given-names>
            <surname>Mauá</surname>
          </string-name>
          ,
          <string-name>
            <surname>F. G.</surname>
          </string-name>
          <article-title>Cozman, dpasp: A comprehensive diferentiable probabilistic answer set programming environment for neurosymbolic learning and reasoning</article-title>
          ,
          <source>CoRR abs/2308</source>
          .02944 (
          <year>2023</year>
          ). URL: https://doi.org/10.48550/arXiv.2308.02944. doi:
          <volume>10</volume>
          . 48550/ARXIV.2308.02944. arXiv:
          <volume>2308</volume>
          .
          <fpage>02944</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref32">
        <mixed-citation>
          [32]
          <string-name>
            <given-names>R.</given-names>
            <surname>Schwitter</surname>
          </string-name>
          ,
          <article-title>Specifying and verbalising answer set programs in controlled natural language</article-title>
          ,
          <source>Theory Pract. Log. Program</source>
          .
          <volume>18</volume>
          (
          <year>2018</year>
          )
          <fpage>691</fpage>
          -
          <lpage>705</lpage>
          . URL: https://doi.org/10.1017/S1471068418000327. doi:
          <volume>10</volume>
          .1017/S1471068418000327.
        </mixed-citation>
      </ref>
      <ref id="ref33">
        <mixed-citation>
          [33]
          <string-name>
            <given-names>F.</given-names>
            <surname>Petroni</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Piktus</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Fan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Lewis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Yazdani</surname>
          </string-name>
          , N. De Cao,
          <string-name>
            <given-names>J.</given-names>
            <surname>Thorne</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Jernite</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Karpukhin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Maillard</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Plachouras</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Rocktäschel</surname>
          </string-name>
          , S. Riedel,
          <article-title>KILT: a benchmark for knowledge intensive language tasks</article-title>
          , in: K.
          <string-name>
            <surname>Toutanova</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Rumshisky</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <string-name>
            <surname>Zettlemoyer</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Hakkani-Tur</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          <string-name>
            <surname>Beltagy</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Bethard</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Cotterell</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Chakraborty</surname>
          </string-name>
          , Y. Zhou (Eds.),
          <source>Proceedings of the</source>
          <year>2021</year>
          <article-title>Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Association for Computational Linguistics</article-title>
          , Online,
          <year>2021</year>
          , pp.
          <fpage>2523</fpage>
          -
          <lpage>2544</lpage>
          . URL: https: //aclanthology.org/
          <year>2021</year>
          .naacl-main.
          <volume>200</volume>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2021</year>
          .naacl-main.
          <volume>200</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref34">
        <mixed-citation>
          [34]
          <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: https://arxiv.org/abs/
          <year>1908</year>
          .10084.
        </mixed-citation>
      </ref>
      <ref id="ref35">
        <mixed-citation>
          [35]
          <string-name>
            <given-names>K.</given-names>
            <surname>Song</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Tan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Qin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Lu</surname>
          </string-name>
          , T. Liu,
          <article-title>Mpnet: Masked and permuted pre-training for language understanding</article-title>
          , in: H.
          <string-name>
            <surname>Larochelle</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Ranzato</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Hadsell</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Balcan</surname>
          </string-name>
          , H. Lin (Eds.),
          <source>Advances in Neural Information Processing Systems 33: Annual Conference on Neural Information Processing Systems</source>
          <year>2020</year>
          ,
          <article-title>NeurIPS 2020</article-title>
          , December 6-
          <issue>12</issue>
          ,
          <year>2020</year>
          , virtual,
          <year>2020</year>
          . URL: https://proceedings.neurips. cc/paper/2020/hash/c3a690be93aa602ee2dc0ccab5b7b67e-Abstract.html.
        </mixed-citation>
      </ref>
      <ref id="ref36">
        <mixed-citation>
          [36]
          <string-name>
            <given-names>V.</given-names>
            <surname>Sanh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Debut</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Chaumond</surname>
          </string-name>
          , T. Wolf,
          <article-title>Distilbert, a distilled version of bert: smaller, faster, cheaper and lighter</article-title>
          , ArXiv abs/
          <year>1910</year>
          .01108 (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref37">
        <mixed-citation>
          [37]
          <string-name>
            <given-names>W.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Wei</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Dong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Bao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Zhou</surname>
          </string-name>
          , Minilm:
          <article-title>Deep self-attention distillation for task-agnostic compression of pre-trained transformers</article-title>
          , in: H.
          <string-name>
            <surname>Larochelle</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Ranzato</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Hadsell</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Balcan</surname>
          </string-name>
          , H. Lin (Eds.),
          <source>Advances in Neural Information Process-</source>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>