<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>Automated Knowledge Graph Completion for Natural Language Understanding: Known Paths and Future Directions.⋆</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Giovanni Buzzega</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Veronica Guidetti</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Federica Mandreoli</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Luca Mariotti</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Andrea Belli</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Paolo Lombardi</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Dipartimento di Scienze Fisiche, Informatiche e Matematiche, Univ. Modena e Reggio Emilia</institution>
          ,
          <addr-line>Modena</addr-line>
          ,
          <country country="IT">Italy</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Expert.ai</institution>
          ,
          <addr-line>Modena</addr-line>
          ,
          <country country="IT">Italy</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>Knowledge Graphs (KGs) are large collections of structured data that can model real world knowledge and are important assets for the companies that employ them. KGs are usually constructed iteratively and often show a sparse structure. Also, as knowledge evolves, KGs must be updated and completed. Many automatic methods for KG Completion (KGC) have been proposed in the literature to reduce the costs associated with manual maintenance. Motivated by an industrial case study aiming to enrich a KG specifically designed for Natural Language Understanding tasks, this paper presents an overview of classical and modern deep learning completion methods. In particular, we delve into Large Language Models (LLMs), which are the most promising deep learning architectures. We show that their applications to KGC are afected by several shortcomings, namely they neglect the structure of KG and treat KGC as a classification problem. Such limitations, together with the brittleness of the LLMs themselves, stress the need to create KGC solutions at the interface between symbolic and neural approaches and lead to the way ahead for future research in intelligible corpus-based KGC.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Knowledge Graphs</kwd>
        <kwd>Natural Language Understanding</kwd>
        <kwd>Large Language Models</kwd>
        <kwd>Knowledge Graph Completion</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>standard solutions in knowledge representation and have played an increasingly important role
in many knowledge-aware tasks.</p>
      <p>
        Many companies have introduced the use of KGs into their business processes, improving the
performance of their products, e.g., recommendation systems have improved data representation
and explainability of recommendations, question-answering systems have increased eficiency
and started to answer multi-hop questions, and Information Retrieval has improved the accuracy
of results and achieved greater search eficiency [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ].
      </p>
      <p>
        A notable example of enterprise KG is Sensigrafo (from the Italian words sensi = "senses,
meanings" and grafo = "graph") developed by the Italian software house Expert.AI1. The primary
use of Sensigrafo is Natural Language Undestanding (NLU), a branch of AI that uses computer
software to understand language as text or speech input. Specifically, Sensigrafo is not meant to
be an encyclopedic reference tool for end-users like most KGs [
        <xref ref-type="bibr" rid="ref3 ref4">3, 4</xref>
        ] but a core module engineered
to disambiguate text that is to assign it semantic meaning. To this end, Sensigrafo gives a
machine-oriented representation of a language’s lexicon where every item is provided with a
set of attributes making explicit, in a machine-readable format, all grammatical, syntactical, and
semantic characteristics belonging to words and concepts.
      </p>
      <p>As real-world knowledge changes and grows, KGs must be kept updated. One possible
solution to KG enrichment is adding novel entities and relations manually. This approach
requires expensive human eforts, but, at the same time, it allows adding information to the
Knowledge Base with fine-grained control. This is a desirable feature when considering KGs
built for NLU tasks since the disambiguation process relies on the principles used to build the
KG. Thus, when the KG expansion process is performed, preserving a certain degree of sparsity
is imperative. Manual expansion is indeed the main current approach adopted for Sensigrafo,
which is constantly updated by several computational linguists.</p>
      <p>
        On the other hand, the literature presents many automatic approaches for KG enrichment,
usually referenced as KG Completion (KGC) [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. Most of these methods adopt machine learning
solutions that can be efective when the relations are characterized by sharp logical properties
such as symmetry or transitivity and can greatly speed up and reduce the costs of the enrichment
process. Still, most of these approaches rely only on the internal structure of the KG, making
them unsuitable for sparse KGs and unable to inject new knowledge from external sources.
      </p>
      <p>In recent years, Large Language Models (LLMs), namely gigantic deep learning architectures
specifically tailored to manipulate natural language, are showing astounding results in NLU
tasks. For this reason, more studies are proposing KG maintenance based on the extraction of
knowledge implicitly contained in LLMs after pre-training. LLMs are trained in a self-supervised
way on vast amounts of text from the most disparate sources. Therefore, unlike standard KG
schemas, their syntactic and semantic content is far from being systematic, organized, and
robust, making LLM-based solutions for KGC still unreliable.</p>
      <p>KGC methods based on LLMs are inefective partly due to how such techniques use them,
i.e., as oracles to be queried. We believe that to overcome this limitation, it is necessary to use a
hybrid approach. In fact, our work stems from "IbridAI - Hybrid approaches to Natural Language
Understanding", a project aiming to improve NLU by bridging the gap between symbolic and
deep-learning approaches to language representation. One of the challenges of this project is to
develop methods to perform corpus-based KGC not only automatically but also consistently to
retain the principles used to build the reference KG.</p>
      <p>In this paper, we move the first steps toward this ambitious objective. To introduce the field
of interest, in Section 2, we compare some enterprise and open-access KGs and discuss their
applications. We next summarize the main findings concerning state-of-the-art approaches
in language manipulation, namely, LLMs. Afterward, Section 4 presents some classical and
modern deep-learning methods used to maintain and enrich KGs. Finally, Section 5 discusses
the open challenges in KG completion and enrichment, current state-of-the-art limitations of
deep learning methods, and possible future research directions.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Overview on KGs and their use in NLU</title>
      <p>
        A KG is a set of real-world facts and semantic relations encoded in the form of triples (subject,
predicate, object), where the predicate is the relation that links two concepts. Formally we define
a KG as  = (, ,  ) where  is the set of all entities, which are nodes of the graph, and 
is the set of all relations, and  ⊆  ×  ×  is the set of all triples. In each triple (ℎ, , )
with ℎ,  ∈ ,  ∈ , ℎ is the head entity,  is the relation link and  is the tail entity [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. As
discussed in the introduction, companies create and use KGs for their business and thus usually
keep them private [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ].
      </p>
      <p>
        Table 1 compares the main properties of Sensigrafo with the most important freely accessible
KGs [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ], that is DBpedia [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ], Freebase [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ], OpenCyc [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ], Wikidata [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ], and YAGO [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ].
      </p>
      <p>Each node in Sensigrafo is called syncon and groups a set of words that can denote identical
or similar meanings. The English standard Sensigrafo contains about 440,000 syncons, grouping
more than 580,000 words, rules for inflections, and 80+ relation types that yield about 7.1 million
links between concepts.</p>
      <p>
        Compared to Sensisgrafo, most of these collaborative KGs have been automatically created
and therefore store a very high number of triples. The number of classes highly varies among
these KGs, ranging from 736 (DBpedia) up to 300K (Wikidata) and 570K (YAGO). These KGs are
cross-domain, and their content depends on the text corpora that have been integrated into the
KGs. The number of relation types also varies with KGs, ranging from 106 (YAGO) up to 70k
(Freebase). Freebase also contains the largest number of entities, reaching almost fifty million
[
        <xref ref-type="bibr" rid="ref10">10</xref>
        ]. Generally speaking, the resulting collaborative KGs are rich in relation types and link
density because their construction aims to include as much real-world knowledge as possible.
In contrast, KGs specifically designed for NLU, such as Sensigrafo, are modeled with an eye for
sparsity and only contain most general link types.
      </p>
      <p>In order to use KGs for NLU tasks we must identify named entities in the textual sources
and then associate them with entities in the knowledge base. This is carried out by Entity
linking which is composed of two subtasks: Named entity recognition (NER), and named entity
disambiguation (NED).</p>
      <p>
        As a first step NER classifies the entities mentioned in the text. The identified named entities
will later be linked to the knowledge base entities by the NED subtask. The NER task has been
historically carried out using rule-based approaches and hand-crafted features [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ]. Recently,
performances have been improved with the use of statistical approaches such as Conditional
No. of triples
No. of classes
No. of relations
No. of entities
entities / classes
      </p>
      <p>
        Random Fields [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ], a biafine model that scores pairs of start- and end-tokens inside a sentence
[
        <xref ref-type="bibr" rid="ref14">14</xref>
        ], classification models via various machine learning algorithms [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ], and deep learning
models [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ]. Subsequently NED selects the correct entity from a set of candidates that are
identified by NER. Possible approaches include ensemble learning through Support Vector
Machines [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ], reinforcement learning [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ], and a ranking algorithm based on semantic and
syntactic metrics from on WordNet [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ].
      </p>
    </sec>
    <sec id="sec-3">
      <title>3. Large Language Models in a nut</title>
      <p>
        Since the invention of Transformers [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ], LLMs have monopolized state-of-the-art NLP
applications [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ]. Transformers [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ] are architectures merging memory networks with the concept of
self-attention. Self-attention is the mechanism that allows assigning weights to tokens based
on their relevance so that they can pass more information to the last layers of the network. One
notable example of LLM is BERT [
        <xref ref-type="bibr" rid="ref22">22</xref>
        ] and its numerous successors, which surpassed human
performances in some benchmarks [
        <xref ref-type="bibr" rid="ref23">23</xref>
        ]. BERT consists of bidirectional transformer encoders
that can read the entire text simultaneously and compute attention over previous and following
tokens. Thus, BERT outputs can be considered as contextual embeddings of each subword token
in the input text [
        <xref ref-type="bibr" rid="ref24">24</xref>
        ]. Since the release of BERT in 2018, larger LMs have appeared in the
literature. Some of them are based on BERT, such as RoBERTa [
        <xref ref-type="bibr" rid="ref25">25</xref>
        ] and DeBERTa [
        <xref ref-type="bibr" rid="ref23">23</xref>
        ], while
others are not, as GPT-3 [
        <xref ref-type="bibr" rid="ref26">26</xref>
        ] and PaLM [
        <xref ref-type="bibr" rid="ref27">27</xref>
        ]. LLMs are usually trained in a self-supervised
fashion, drastically reducing the amount of human efort. Training usually involves cloze tasks,
i.e., given a partial text, the model should try to fill in the blank.
      </p>
      <p>
        One of the strengths that led to the success of LLMs is related to their transfer-learning
ability: once the pre-trained models are published, a little efort is needed to fine-tune them for
a specific task. Usually, fine-tuning consists of supervised training of at least a part of the LLM
parameters and a simple specialized neural network (typically a classifier), which is appended
to the LLM and trained for the downstream task. Training LLM parameters creates specialized
contextual embeddings that are used as input for the post-pended network. Nevertheless, it was
quickly realized that training, and thus finetuning, comes at a cost. A 2019 study [
        <xref ref-type="bibr" rid="ref28">28</xref>
        ] estimated
training costs of comparatively small models like BERT and GPT-2 to be tens to thousands of
USD. In 2020, [
        <xref ref-type="bibr" rid="ref29">29</xref>
        ] estimated that developing models with more than one billion parameters
could require a budget of millions of USDs. Currently, only large companies can aford the
enormous costs associated with training ever-growing deep learning models. Surprisingly, it
recently became clear that pre-trained LLMs (PLLMs) show outstanding emergent peculiarities,
such as in-context learning (ICL) skills [
        <xref ref-type="bibr" rid="ref30">30</xref>
        ], that could make finetuning not only expensive but
also superfluous.
      </p>
      <p>
        ICL belongs to the class of probing methods, i.e., methods using the frozen representation
of PLLMs to address a specific task. ICL requires a few examples and some instructions (not
necessarily) to form a demonstration context. The final predictions are obtained through
zero- or few-shot learning techniques [
        <xref ref-type="bibr" rid="ref26 ref31 ref32">26, 31, 32</xref>
        ]. ICL provides an interpretable interface to
communicate with LLMs in a training-free learning framework and opens up the possibility of
testing the consistency of PLLMs, their reaction to diferent input prompts, and their performance
in classical generalization (training/test distribution are the same) and out-of-distribution
generalization [
        <xref ref-type="bibr" rid="ref30 ref33 ref34">30, 33, 34</xref>
        ].
      </p>
      <p>
        The efectiveness of ICL indicates that PLLMs contain structured knowledge. In fact, the
pioneeristic work of Petroni et al., [
        <xref ref-type="bibr" rid="ref35">35</xref>
        ] showed that PLLMs recall relational and factual
knowledge without any fine-tuning. Such knowledge can take the form of a Knowledge Base that is
constructed using PLLMs as oracle-based entity linkers. Several studies deepen this awareness;
see [
        <xref ref-type="bibr" rid="ref36">36</xref>
        ] for a recent review. As PLLMs showed ICL capabilities, researchers became more
interested in evaluating their intrinsic capabilities and internal structure, neglecting downstream
task finetuning [
        <xref ref-type="bibr" rid="ref30 ref37">37, 30</xref>
        ].
      </p>
      <p>
        Over the last few years, diferent benchmarks have been developed to measure the abilities,
consistency, and quality of PLLMs. Some of the tasks include Open-Domain Closed-Book
Question Answering, Cloze and Completion tasks, Common Sense Reasoning, and In-context
Reading Comprehension [
        <xref ref-type="bibr" rid="ref27">27</xref>
        ]. Several studies evaluated general-purpose language
understanding [
        <xref ref-type="bibr" rid="ref38">38</xref>
        ], the consistency of LLMs against paraphrasing [
        <xref ref-type="bibr" rid="ref33">33</xref>
        ], the reaction of PLLMs to Chains
of Though (CoT) reasoning [
        <xref ref-type="bibr" rid="ref34">34</xref>
        ], how much PLLMs rely on semantic priors and their ability
to learn input-label mapping [
        <xref ref-type="bibr" rid="ref39">39</xref>
        ]. Other works focused on testing whether PLLMs can grasp
implicit common sense [
        <xref ref-type="bibr" rid="ref40">40</xref>
        ] and their knowledge organization[
        <xref ref-type="bibr" rid="ref35 ref40">35, 41, 40</xref>
        ].
      </p>
    </sec>
    <sec id="sec-4">
      <title>4. KG maintenance and evolution</title>
      <p>The main task in KG maintenance is called KG Completion (KGC). KGC aims to attain new
knowledge that was not previously stored in a KG, i.e., adding factual knowledge to a
preexisting KG. In the literature, two main tasks are associated with KGC: Entity Prediction and
Link Prediction. Entity prediction identifies the missing entity in a given incomplete triple,
while link prediction forecasts the most appropriate relation between two entities. This section
sheds light on the diference between classical and modern LLM-based approaches.</p>
      <sec id="sec-4-1">
        <title>4.1. Classical KGC approaches</title>
        <p>
          Classical approaches to KGC can be split into static and dynamic approaches (i.e. based on
external sources). Diferent static KGC techniques use Tensor/matrix factorization, Translation,
and Neural Network models [
          <xref ref-type="bibr" rid="ref5">5, 42</xref>
          ]. For example, TransE [43] is a translational model that
interprets both relations and entities as vectors in the same low-dimensional space; the
translation operation defined by a relation vector is used to link entities that were previously not
linked. RESCAL [44] models the KG as a 3− dimensional tensor and learns the parameters of a
bilinear scoring function for each relation and the entity embeddings. An extensive comparison
of classical KGC techniques is presented in [45].
        </p>
        <p>The main limitation of these approaches is that KGs are modeled statically, mostly relying
on the structural information already encoded in the KG. This implies that new knowledge is
hard to translate into new triples. In fact, it is known that the efectiveness of representation
learning based on KG structure decreases dramatically if KGs are sparse [46]. Since the gold
standard for KG enrichment comes from human eforts and is based on external (usually textual)
natural language resources, the automatization of KG curation should be based on external
corpora. Developing dynamic ways to perform KGC based on corpora would allow for a greater
degree of interpretability as the source of information can be clearly tracked and it would be
possible to perform continuous fact-checking and maintenance of the KG. In particular, we
are interested in methods that can jointly model the text in a coherent and reasonable format
and complete the pre-existing KG with only relevant facts. Some studies [47, 48] specifically
build KGs from text and extract relations using pattern templates. Unfortunately, this approach
trades finding the implicit textual relation between identified entities with a rich relation set
which is not suited for NLU-oriented KGs. Another approach to KGC and relation extraction
considers both text and the existing KG structure by learning latent space representation for
both. Similar tasks are known in the literature as text-enhanced knowledge embedding [46, 49]
and relation extraction [50]. These particular approaches require ad hoc architectures, so they
cannot easily exploit state-of-the-art models for NLU.</p>
      </sec>
      <sec id="sec-4-2">
        <title>4.2. LLMs applications to KGC</title>
        <p>
          While most KGC methods rely on structural information already present in the KG, some recent
approaches have started to leverage LLMs to use third-party data sources [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ]. Some approaches
use PLLMs fine-tuning to perform KGC. For example, KG-BERT [ 51] reframes the KGC task as
a sequence classification problem. In particular, relation triples are transformed into sentences
based on their definitions. A simple classification network is then appended to BERT, and the
whole architecture is finetuned to perform a relation prediction task. A similar approach is used
in a model named BLP [52], combining BERT and four diferent relational models.
        </p>
        <p>A recent line of research uses the hidden KG contained in PLLMs to test their consistency
and compare their performance at a semantic level. The aim of the works on this subject is
usually twofold: providing pipelines for speeding up and automatizing KG completion and
understanding LLMs knowledge base organization [53]. In particular, [54] aim to reconstruct
and complete an existing KG, namely Word-Net [55], starting from a PLLM. They show that
contextualized word embeddings encode high-level concepts and hierarchical relationships,
creating a taxonomy. A more general approach presented in [56] aims to create from scratch
or complete existing KGs using PLLMs in an unsupervised fashion. Starting from a corpus,
they match candidate facts therein with the knowledge in PLLMs via a beam search in their
attention weights matrices. Afterward, they map facts (triples) onto a preexisting or open
schema KG. This allows performing entity linking inside pre-existing KGs or growing them
in case new facts/links are found in the corpus. PALT is another framework to reduce the
amount of computational efort in KG completion, [ 57]. It uses a transfer learning technique to
translate KGC into a fill-in-the-blank task (formulated as next-sentence prediction), achieving
competitive results in link prediction and triples classification. KGs rarely contain information
about the strength of the relationship between entities. Therefore, starting from an existing KG,
[58] use PLLMs to weight KG edges, focusing on ConceptNet. They do so by transforming KG
relations into natural language sentences and then using the LLM to rate such sentences using
a perplexity-based measure. Their results show that the augmented KG improves performances
on refining existing word embedding for semantic relatedness. Finally, in [ 59], the authors
found a way to crawl the internal KG of LLMs. Starting from a seed entity, they build a way
to grow and expand a KG without knowing a priori what relations are associated with such
an entity. To grow the KG and maintain high precision, they decompose the crawling into
multiple subtasks that are solved via few-shot ICL tasks, also allowing the model not to know
the answer.</p>
        <p>Deriving KG from PLLMs can also be done in a corpora-independent fashion. In particular,
starting from PLLMs, [60] harvest a knowledge graph. Their method can be extended to any
relationship (not only triples). This framework automatically generates diverse prompts by
paraphrasing an initial one and searches within an LLM for entity pairs that consistently satisfy
diverse sentences.</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>5. Current limitations, open challenges and future research perspective in corpus-driven KGC</title>
      <p>
        The state-of-the-art overview presented in the previous sections points out that one of the most
promising approaches for corpus-driven KGC is represented by LLMs. However, the common
motif behind such LLMs applications is the sole interpretation of knowledge contained in PLLMs
while neglecting the reference KG. In the following, we underline how current approaches
present several limitations when doing corpus-based KGC on KGs with well-defined semantics
and a sparse structure and discuss future research directions to cope with these problems. In
fact, the enrichment of NLU-oriented KGs is desired to the extent of performance gains. For this
reason, we can state that KGC methods need to be parsimonious and consistent. Parsimonious
in that KGC must retain the sparse structure of the KG and consistent in that KGC must comply
with the KG’s organizing principles, semantics, and structural properties. As we shall see, the
limitations relate mainly to the brittleness of the knowledge stored by PLLMs and to current
methods that translate KGC into a classification task and rely on PLLMs only.
State-of-the-art PLLMs challenges. Current methods for KGC based on LLMs rely
exclusively on the knowledge acquired by LLMs in their pretraining phase. Thus, the predicted facts
might be outdated or even wrong. Indeed, studies regarding the consistency, organization, and
depth of knowledge learned by LLMs are quite recent and have revealed several weaknesses.
Specifically, some recent studies show that PLLMs mainly rely on associations and lack logical
reasoning, better distinguish coarse-grained concepts, perform poorly on CoT evaluations, and
may sufer from conceptual hallucinations triggered by word co-occurrence [
        <xref ref-type="bibr" rid="ref34 ref40">61, 34, 40</xref>
        ]. Indeed,
PLLMs contain some prior information about entities [
        <xref ref-type="bibr" rid="ref35">35</xref>
        ] that cannot always be overwritten
and may lead to out-of-context bias. Moreover, they struggle in encoding specific concepts,
taxonomical classes, and concepts that are too frequent [54]. Finally, it was found that the ability
to learn about a concept in a corpus depends on its frequency and its specificity, justifying the
birth of finetuned BERT versions for real-world applications (such as biology, science, and law
[62, 63, 64]).
      </p>
      <p>
        For all the aforementioned reasons, creating an interface that allows LLMs to communicate
with symbolic KGs poses some problems. Indeed, while the symbolic approach to language
follows rules of abstraction and systematization of knowledge, deep learning models rely
primarily on the volume (sometimes more than the quality) of the texts on which they are
trained. The lack of guarantees on the efectiveness of the performance of LLMs does not, to
date, allow the creation of an automation pipeline in the updating and maintenance of KGs.
These problems could be partially solved by investigating how to improve the training of LLMs
to consolidate their ICL capabilities. Indeed, open challenges in ICL concern retrieving correct
knowledge from PLLMs by making it more robust and insensitive to prompting templates
format, the selection of in-context examples, and their ordering [65, 66, 67, 68]. In addition, ICL
frameworks should be designed not only to test the consistency of PLLMs against paraphrasing
[
        <xref ref-type="bibr" rid="ref33">33</xref>
        ] and transitive relations. They should also test whether LMMs satisfy the properties which
diferent relations between KG entities should satisfy, e.g., anti-symmetry of "is a" relations or
transitivity in synonyms.
      </p>
      <sec id="sec-5-1">
        <title>KCG: from classification to representation learning. As mentioned in the previous</title>
        <p>
          section, the most used approach for interpreting the embeddings of triplets coming from PLLMs
is based on classification. Classification outcomes are always forced to predict a relation between
two entities and do not leave much room for uncertainty. This may be problematic in KGC tasks
as it was shown that word co-occurrence triggers conceptual hallucinations in LLMs which are
biased towards false positive predictions (e.g., prediction of false conceptual properties) [
          <xref ref-type="bibr" rid="ref40">40</xref>
          ].
This is undesirable with non-transparent models and may severely compromise disambiguation
tasks.
        </p>
        <p>Regardless of the inherent biases of LLMs, modeling KGC as a classification problem prevents
the correct handling of KGs where multiple relations connect two entities. This problem would
afect both the disambiguation process, which must find the correct triple in a sentence, and the
link prediction task, aiming to detect the right relation. An ideal solution for this purpose would
be to define a probability measure for relationships between entities. This method should be able
to handle multiple outcomes and quantify the uncertainty in the answer so that relationships
predicted with low confidence do not enter the KG.</p>
        <p>The last problem we would like to discuss arises when KGC based on LLMs acts on KGs
equipped with a disambiguator tailored to visit it. In this case, integrating the various
components in a unique framework is not only about respecting the structural features of the
KG but also about the interaction between the LLM and the disambiguator. Finding a way
to teach PLLMs to respect the structure of the KG and the rules used by the disambiguator
is an open problem that has not been addressed to date. We argue that a more sensible
approach to KGC should rely on representation learning instead of classification, like classical
Translational or Tensor/matrix factorization of KGC approaches. This would increase the
"maneuvering room" at the interface between KGs and LLMs, also giving greater importance to
the pre-existing KG structure and its navigator, if any.</p>
        <p>In conclusion, we believe that LLMs should not be used as a Knowledge base to be queried,
especially when doing corpus-based KGC. In fact, recently developed LLM-based techniques
for KGC mainly rely on artificial prompts paraphrasing standard KG triplets. Misusing these
methods on real corpora may give rise to syntactic and/or semantic hallucinations, as one would
lose control of LLMs’ prior knowledge. Hence, we believe that the task of KGC should use
PLLMs only to extract facts from documents, and not from direct interpretations of the latent
knowledge of these models.</p>
        <p>Pending more robust LLM pretraining techniques, the interface between LLMs and symbolic
NLUs should rely on representation learning techniques, such as contrastive learning [69].
These methods would depart from the mere standard classification of triplets via cloze tasks
and would allow mimicking and, hopefully, learning the principles used in creating symbolic
KGs and disambiguation systems, leading to a consistent, dynamical deep-learning approach to
KGC.
knowledge in pre-trained language models, arXiv preprint arXiv:2211.04079 (2022).
[41] F. Petroni, A. Piktus, A. Fan, P. Lewis, M. Yazdani, N. De Cao, J. Thorne, Y. Jernite,
V. Karpukhin, J. Maillard, et al., Kilt: a benchmark for knowledge intensive language tasks,
in: Proceedings of the 2021 Conference of the North American Chapter of the Association
for Computational Linguistics: Human Language Technologies, 2021, pp. 2523–2544.
[42] T. Dettmers, P. Minervini, P. Stenetorp, S. Riedel, Convolutional 2d knowledge graph
embeddings, in: Proceedings of the AAAI conference on artificial intelligence, volume 32,
2018.
[43] A. Bordes, N. Usunier, A. Garcia-Duran, J. Weston, O. Yakhnenko, Translating embeddings
for modeling multi-relational data, Advances in neural information processing systems 26
(2013).
[44] M. Nickel, V. Tresp, H.-P. Kriegel, et al., A three-way model for collective learning on
multi-relational data., in: Icml, volume 11, 2011, pp. 3104482–3104584.
[45] A. Rossi, D. Barbosa, D. Firmani, A. Matinata, P. Merialdo, Knowledge graph embedding
for link prediction: A comparative analysis, ACM Transactions on Knowledge Discovery
from Data (TKDD) 15 (2021) 1–49.
[46] Z. Wang, J. Li, Z. Liu, J. Tang, Text-enhanced representation learning for knowledge graph,
in: Proceedings of International joint conference on artificial intelligent (IJCAI), 2016, pp.
4–17.
[47] N. Kertkeidkachorn, R. Ichise, T2kg: An end-to-end system for creating knowledge graph
from unstructured text, in: Workshops at the Thirty-First AAAI Conference on Artificial
Intelligence, 2017.
[48] A. Rossanez, J. C. Dos Reis, R. d. S. Torres, H. de Ribaupierre, Kgen: a knowledge graph
generator from biomedical scientific literature, BMC medical informatics and decision
making 20 (2020) 1–24.
[49] X. Han, Z. Liu, M. Sun, Neural knowledge acquisition via mutual attention between
knowledge graph and text, Proceedings of the AAAI Conference on Artificial Intelligence
32 (2018). URL: https://ojs.aaai.org/index.php/AAAI/article/view/11927. doi:10.1609/
aaai.v32i1.11927.
[50] A. Bastos, A. Nadgeri, K. Singh, I. O. Mulang, S. Shekarpour, J. Hofart, M. Kaul, Recon:
relation extraction using knowledge graph context in a graph neural network, in: Proceedings
of the Web Conference 2021, 2021, pp. 1673–1685.
[51] L. Yao, C. Mao, Y. Luo, Kg-bert: Bert for knowledge graph completion, arXiv preprint
arXiv:1909.03193 (2019).
[52] D. Daza, M. Cochez, P. Groth, Inductive entity representations from text via link prediction,
in: Proceedings of the Web Conference 2021, 2021, pp. 798–808.
[53] V. Swamy, A. Romanou, M. Jaggi, Interpreting language models through knowledge graph
extraction, in: 35th Conference on Neural Information Processing Systems (NeurIPS 2021),
CONF, 2021.
[54] C. Aspillaga, M. Mendoza, Á. Soto, Inspecting the concept knowledge graph encoded by
modern language models, in: Findings of the Association for Computational Linguistics:
ACL-IJCNLP 2021, 2021, pp. 2984–3000.
[55] G. A. Miller, WordNet: An electronic lexical database, MIT press, 1998.
[56] C. Wang, X. Liu, D. Song, Language models are open knowledge graphs, arXiv preprint
arXiv:2010.11967 (2020).
[57] J. Shen, C. Wang, Y. Yuan, J. Han, H. Ji, K. Sen, M. Zhang, D. Song, PALT:
Parameterlite transfer of language models for knowledge graph completion, in: Findings of
the Association for Computational Linguistics: EMNLP 2022, Association for
Computational Linguistics, Abu Dhabi, United Arab Emirates, 2022, pp. 3833–3847. URL:
https://aclanthology.org/2022.findings-emnlp.281.
[58] J. Omeliyanenko, A. Zehe, L. Hettinger, A. Hotho, Lm4kg: Improving common sense
knowledge graphs with language models, in: The Semantic Web–ISWC 2020: 19th
International Semantic Web Conference, Athens, Greece, November 2–6, 2020, Proceedings,
Part I 19, Springer, 2020, pp. 456–473.
[59] R. Cohen, M. Geva, J. Berant, A. Globerson, Crawling the internal knowledge-base of
language models, arXiv preprint arXiv:2301.12810 (2023).
[60] S. Hao, B. Tan, K. Tang, H. Zhang, E. P. Xing, Z. Hu, Bertnet: Harvesting knowledge
graphs from pretrained language models, arXiv preprint arXiv:2206.14268 (2022).
[61] H. Li, Language models: past, present, and future, Communications of the ACM 65 (2022)
56–63.
[62] J. Lee, W. Yoon, S. Kim, D. Kim, S. Kim, C. H. So, J. Kang, Biobert: a pre-trained biomedical
language representation model for biomedical text mining, Bioinformatics 36 (2020)
1234–1240.
[63] I. Beltagy, K. Lo, A. Cohan, Scibert: A pretrained language model for scientific text, arXiv
preprint arXiv:1903.10676 (2019).
[64] I. Chalkidis, M. Fergadiotis, P. Malakasiotis, N. Aletras, I. Androutsopoulos, Legal-bert:</p>
        <p>The muppets straight out of law school, arXiv preprint arXiv:2010.02559 (2020).
[65] Z. Zhao, E. Wallace, S. Feng, D. Klein, S. Singh, Calibrate before use: Improving few-shot
performance of language models, in: International Conference on Machine Learning,
PMLR, 2021, pp. 12697–12706.
[66] S. Shin, S.-W. Lee, H. Ahn, S. Kim, H. Kim, B. Kim, K. Cho, G. Lee, W. Park, J.-W. Ha, et al.,
On the efect of pretraining corpora on in-context learning by a large-scale language model,
in: Proceedings of the 2022 Conference of the North American Chapter of the Association
for Computational Linguistics: Human Language Technologies, 2022, pp. 5168–5186.
[67] S. Min, X. Lyu, A. Holtzman, M. Artetxe, M. Lewis, H. Hajishirzi, L. Zettlemoyer, Rethinking
the role of demonstrations: What makes in-context learning work?, arXiv preprint
arXiv:2202.12837 (2022).
[68] J. Kim, H. J. Kim, H. Cho, H. Jo, S.-W. Lee, S.-g. Lee, K. M. Yoo, T. Kim, Ground-truth labels
matter: A deeper look into input-label demonstrations, arXiv preprint arXiv:2205.12685
(2022).
[69] P. H. Le-Khac, G. Healy, A. F. Smeaton, Contrastive representation learning: A framework
and review, Ieee Access 8 (2020) 193907–193934.</p>
      </sec>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>A.</given-names>
            <surname>Hogan</surname>
          </string-name>
          , E. Blomqvist,
          <string-name>
            <given-names>M.</given-names>
            <surname>Cochez</surname>
          </string-name>
          ,
          <string-name>
            <surname>C.</surname>
          </string-name>
          <article-title>D'amato</article-title>
          , G. D.
          <string-name>
            <surname>Melo</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Gutierrez</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Kirrane</surname>
            ,
            <given-names>J. E. L.</given-names>
          </string-name>
          <string-name>
            <surname>Gayo</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Navigli</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Neumaier</surname>
            ,
            <given-names>A.-C. N.</given-names>
          </string-name>
          <string-name>
            <surname>Ngomo</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Polleres</surname>
            ,
            <given-names>S. M.</given-names>
          </string-name>
          <string-name>
            <surname>Rashid</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Rula</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <string-name>
            <surname>Schmelzeisen</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Sequeda</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Staab</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Zimmermann</surname>
          </string-name>
          ,
          <article-title>Knowledge graphs</article-title>
          ,
          <source>ACM Comput. Surv</source>
          .
          <volume>54</volume>
          (
          <year>2021</year>
          ). URL: https://doi.org/10.1145/3447772. doi:
          <volume>10</volume>
          .1145/3447772.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>C.</given-names>
            <surname>Peng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Xia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Naseriparsa</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Osborne</surname>
          </string-name>
          ,
          <article-title>Knowledge graphs: Opportunities and</article-title>
          challenges,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>J.</given-names>
            <surname>Hofart</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F. M.</given-names>
            <surname>Suchanek</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Berberich</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Lewis-Kelham</surname>
          </string-name>
          , G. de Melo, G. Weikum,
          <article-title>Yago2: exploring and querying world knowledge in time, space, context, and many languages</article-title>
          ,
          <source>Proceedings of the 20th international conference companion on World wide web (</source>
          <year>2011</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <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="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>T.</given-names>
            <surname>Shen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , J. Cheng,
          <article-title>A comprehensive overview of knowledge graph completion</article-title>
          ,
          <source>Knowledge-Based Systems</source>
          <volume>255</volume>
          (
          <year>2022</year>
          )
          <article-title>109597</article-title>
          . URL: https://www. sciencedirect.com/science/article/pii/S095070512200805X. doi:https://doi.org/10. 1016/j.knosys.
          <year>2022</year>
          .
          <volume>109597</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>N.</given-names>
            <surname>Noy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Gao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Jain</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Narayanan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Patterson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Taylor</surname>
          </string-name>
          ,
          <article-title>Industry-scale knowledge graphs: Lessons and challenges</article-title>
          ,
          <source>Commun. ACM</source>
          <volume>62</volume>
          (
          <year>2019</year>
          )
          <fpage>36</fpage>
          -
          <lpage>43</lpage>
          . URL: https://doi.org/10. 1145/3331166. doi:
          <volume>10</volume>
          .1145/3331166.
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>J.</given-names>
            <surname>Lehmann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Isele</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Jakob</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Jentzsch</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Kontokostas</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P. N.</given-names>
            <surname>Mendes</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Hellmann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Morsey</surname>
          </string-name>
          , P. van Kleef,
          <string-name>
            <given-names>S.</given-names>
            <surname>Auer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Bizer</surname>
          </string-name>
          ,
          <article-title>Dbpedia - a large-scale, multilingual knowledge base extracted from wikipedia</article-title>
          ,
          <source>Semantic Web</source>
          <volume>6</volume>
          (
          <year>2015</year>
          )
          <fpage>167</fpage>
          -
          <lpage>195</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>K. D.</given-names>
            <surname>Bollacker</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Tufts</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Pierce</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Cook</surname>
          </string-name>
          ,
          <article-title>A platform for scalable, collaborative</article-title>
          ,
          <source>structured information integration</source>
          ,
          <year>2007</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>C.</given-names>
            <surname>Matuszek</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Cabral</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Witbrock</surname>
          </string-name>
          ,
          <string-name>
            <surname>J. DeOliveira</surname>
          </string-name>
          ,
          <article-title>An introduction to the syntax and content of cyc</article-title>
          .,
          <year>2006</year>
          , pp.
          <fpage>44</fpage>
          -
          <lpage>49</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>M.</given-names>
            <surname>Färber</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Rettinger</surname>
          </string-name>
          ,
          <article-title>Which knowledge graph is best for me?</article-title>
          , ArXiv abs/
          <year>1809</year>
          .11099 (
          <year>2018</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>M.</given-names>
            <surname>Färber</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Rettinger</surname>
          </string-name>
          ,
          <article-title>Which knowledge graph is best for me?</article-title>
          , arXiv preprint arXiv:
          <year>1809</year>
          .
          <volume>11099</volume>
          (
          <year>2018</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>D. E.</given-names>
            <surname>Appelt</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. R.</given-names>
            <surname>Hobbs</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Bear</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Israel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Kameyama</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Kehler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Martin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Myers</surname>
          </string-name>
          ,
          <string-name>
            <surname>M.</surname>
          </string-name>
          <article-title>Tyson, SRI International FASTUS SystemMUC-6 test results and analysis</article-title>
          ,
          <source>in: Sixth Message Understanding Conference (MUC-6): Proceedings of a Conference Held in Columbia, Maryland, November 6-8</source>
          ,
          <year>1995</year>
          ,
          <year>1995</year>
          . URL: https://aclanthology.org/M95-1019.
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>G.</given-names>
            <surname>Lample</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Ballesteros</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Subramanian</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Kawakami</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Dyer</surname>
          </string-name>
          ,
          <article-title>Neural architectures for named entity recognition, in: Proceedings of the 2016 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Association for Computational Linguistics</article-title>
          , San Diego, California,
          <year>2016</year>
          , pp.
          <fpage>260</fpage>
          -
          <lpage>270</lpage>
          . URL: https://aclanthology.org/N16-1030. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>N16</fpage>
          -1030.
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>J.</given-names>
            <surname>Yu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Bohnet</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Poesio</surname>
          </string-name>
          ,
          <article-title>Named entity recognition as dependency parsing, in: Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics, Association for Computational Linguistics</article-title>
          , Online,
          <year>2020</year>
          , pp.
          <fpage>6470</fpage>
          -
          <lpage>6476</lpage>
          . URL: https://aclanthology.org/
          <year>2020</year>
          .acl-main.
          <volume>577</volume>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2020</year>
          .acl-main.
          <volume>577</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>J.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Sun</surname>
          </string-name>
          , J. Han,
          <string-name>
            <given-names>C.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <article-title>A survey on deep learning for named entity recognition</article-title>
          ,
          <source>IEEE Transactions on Knowledge and Data Engineering</source>
          <volume>34</volume>
          (
          <year>2022</year>
          )
          <fpage>50</fpage>
          -
          <lpage>70</lpage>
          . doi:
          <volume>10</volume>
          .1109/TKDE.
          <year>2020</year>
          .
          <volume>2981314</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>S.</given-names>
            <surname>Ali</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Masood</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Riaz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Saud</surname>
          </string-name>
          ,
          <article-title>Named entity recognition using deep learning: A review</article-title>
          ,
          <source>in: 2022 International Conference on Business Analytics for Technology and Security (ICBATS)</source>
          ,
          <year>2022</year>
          , pp.
          <fpage>1</fpage>
          -
          <lpage>7</lpage>
          . doi:
          <volume>10</volume>
          .1109/ICBATS54253.
          <year>2022</year>
          .
          <volume>9759051</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>A.</given-names>
            <surname>Alokaili</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Menai</surname>
          </string-name>
          ,
          <article-title>Svm ensembles for named entity disambiguation</article-title>
          ,
          <source>Computing</source>
          <volume>102</volume>
          (
          <year>2020</year>
          ). doi:
          <volume>10</volume>
          .1007/s00607-019-00748-x.
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Fang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Cao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , Y. Liu,
          <article-title>Joint entity linking with deep reinforcement learning</article-title>
          ,
          <source>in: The World Wide Web Conference</source>
          , WWW '19,
          <string-name>
            <surname>Association</surname>
          </string-name>
          for Computing Machinery, New York, NY, USA,
          <year>2019</year>
          , p.
          <fpage>438</fpage>
          -
          <lpage>447</lpage>
          . URL: https: //doi.org/10.1145/3308558.3313517. doi:
          <volume>10</volume>
          .1145/3308558.3313517.
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <given-names>W.</given-names>
            <surname>Bouarroudj</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Boufaida</surname>
          </string-name>
          , L. Bellatreche,
          <article-title>Named entity disambiguation in short texts over knowledge graphs</article-title>
          ,
          <source>Knowl. Inf. Syst</source>
          .
          <volume>64</volume>
          (
          <year>2022</year>
          )
          <fpage>325</fpage>
          -
          <lpage>351</lpage>
          . URL: https://doi.org/10.1007/ s10115-021-01642-9. doi:
          <volume>10</volume>
          .1007/s10115-021-01642-9.
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <given-names>A.</given-names>
            <surname>Vaswani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Shazeer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Parmar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Uszkoreit</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Jones</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. N.</given-names>
            <surname>Gomez</surname>
          </string-name>
          , Ł. Kaiser,
          <string-name>
            <surname>I. Polosukhin</surname>
          </string-name>
          ,
          <article-title>Attention is all you need</article-title>
          ,
          <source>Advances in neural information processing systems</source>
          <volume>30</volume>
          (
          <year>2017</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <given-names>L.</given-names>
            <surname>Fan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Ma</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Yu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Hemphill</surname>
          </string-name>
          ,
          <article-title>A bibliometric review of large language models research from 2017 to 2023</article-title>
          , arXiv preprint arXiv:
          <fpage>2304</fpage>
          .
          <year>02020</year>
          (
          <year>2023</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [22]
          <string-name>
            <given-names>J.</given-names>
            <surname>Devlin</surname>
          </string-name>
          , M.-
          <string-name>
            <given-names>W.</given-names>
            <surname>Chang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Toutanova</surname>
          </string-name>
          , BERT:
          <article-title>Pre-training of deep bidirectional transformers for language understanding</article-title>
          ,
          <source>in: Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies</source>
          , Volume
          <volume>1</volume>
          (Long and Short Papers),
          <source>Association for Computational Linguistics</source>
          , Minneapolis, Minnesota,
          <year>2019</year>
          , pp.
          <fpage>4171</fpage>
          -
          <lpage>4186</lpage>
          . URL: https://aclanthology.org/ N19-1423. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>N19</fpage>
          -1423.
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [23]
          <string-name>
            <given-names>P.</given-names>
            <surname>He</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Gao</surname>
          </string-name>
          , W. Chen, Deberta:
          <article-title>Decoding-enhanced bert with disentangled attention</article-title>
          , arXiv preprint arXiv:
          <year>2006</year>
          .
          <volume>03654</volume>
          (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [24]
          <string-name>
            <given-names>D.</given-names>
            <surname>Jurafsky</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. H.</given-names>
            <surname>Martin</surname>
          </string-name>
          ,
          <source>Speech and language processing</source>
          ,
          <year>2021</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          [25]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Ott</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Goyal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Du</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Joshi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Levy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Lewis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Zettlemoyer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Stoyanov</surname>
          </string-name>
          ,
          <article-title>Roberta: A robustly optimized bert pretraining approach</article-title>
          , arXiv preprint arXiv:
          <year>1907</year>
          .
          <volume>11692</volume>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          [26]
          <string-name>
            <given-names>T.</given-names>
            <surname>Brown</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Mann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Ryder</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Subbiah</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. D.</given-names>
            <surname>Kaplan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Dhariwal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Neelakantan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Shyam</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Sastry</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Askell</surname>
          </string-name>
          , et al.,
          <article-title>Language models are few-shot learners</article-title>
          ,
          <source>Advances in neural information processing systems</source>
          <volume>33</volume>
          (
          <year>2020</year>
          )
          <fpage>1877</fpage>
          -
          <lpage>1901</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          [27]
          <string-name>
            <given-names>A.</given-names>
            <surname>Chowdhery</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Narang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Devlin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Bosma</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Mishra</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Roberts</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Barham</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H. W.</given-names>
            <surname>Chung</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Sutton</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Gehrmann</surname>
          </string-name>
          , et al.,
          <article-title>Palm: Scaling language modeling with pathways</article-title>
          ,
          <source>arXiv preprint arXiv:2204.02311</source>
          (
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          [28]
          <string-name>
            <given-names>E.</given-names>
            <surname>Strubell</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Ganesh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>McCallum</surname>
          </string-name>
          ,
          <article-title>Energy and policy considerations for deep learning in nlp</article-title>
          , arXiv preprint arXiv:
          <year>1906</year>
          .
          <volume>02243</volume>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          [29]
          <string-name>
            <given-names>O.</given-names>
            <surname>Sharir</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Peleg</surname>
          </string-name>
          ,
          <string-name>
            <surname>Y. Shoham,</surname>
          </string-name>
          <article-title>The cost of training nlp models: A concise overview</article-title>
          , arXiv preprint arXiv:
          <year>2004</year>
          .
          <volume>08900</volume>
          (
          <year>2020</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref30">
        <mixed-citation>
          [30]
          <string-name>
            <given-names>Q.</given-names>
            <surname>Dong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Dai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Zheng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Wu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Chang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Xu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Sui</surname>
          </string-name>
          ,
          <article-title>A survey for in-context learning</article-title>
          ,
          <source>arXiv preprint arXiv:2301.00234</source>
          (
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref31">
        <mixed-citation>
          [31]
          <string-name>
            <given-names>A.</given-names>
            <surname>Holtzman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Buys</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Du</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Forbes</surname>
          </string-name>
          ,
          <string-name>
            <surname>Y. Choi,</surname>
          </string-name>
          <article-title>The curious case of neural text degeneration</article-title>
          , arXiv preprint arXiv:
          <year>1904</year>
          .
          <volume>09751</volume>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref32">
        <mixed-citation>
          [32]
          <string-name>
            <given-names>O.</given-names>
            <surname>Press</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Min</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Schmidt</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N. A.</given-names>
            <surname>Smith</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Lewis</surname>
          </string-name>
          ,
          <article-title>Measuring and narrowing the compositionality gap in language models</article-title>
          ,
          <source>arXiv preprint arXiv:2210.03350</source>
          (
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref33">
        <mixed-citation>
          [33]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Elazar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Kassner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Ravfogel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Ravichander</surname>
          </string-name>
          , E. Hovy,
          <string-name>
            <given-names>H.</given-names>
            <surname>Schütze</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Goldberg</surname>
          </string-name>
          ,
          <article-title>Measuring and improving consistency in pretrained language models, Transactions of the Association for Computational Linguistics 9 (</article-title>
          <year>2021</year>
          )
          <fpage>1012</fpage>
          -
          <lpage>1031</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref34">
        <mixed-citation>
          [34]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Backurs</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Bubeck</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Eldan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Gunasekar</surname>
          </string-name>
          , T. Wagner,
          <article-title>Unveiling transformers with lego: a synthetic reasoning task</article-title>
          ,
          <source>arXiv preprint arXiv:2206.04301</source>
          (
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref35">
        <mixed-citation>
          [35]
          <string-name>
            <given-names>F.</given-names>
            <surname>Petroni</surname>
          </string-name>
          ,
          <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>P.</given-names>
            <surname>Lewis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Bakhtin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Wu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Miller</surname>
          </string-name>
          ,
          <article-title>Language models as knowledge bases?</article-title>
          ,
          <source>in: Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP)</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Hong Kong, China,
          <year>2019</year>
          , pp.
          <fpage>2463</fpage>
          -
          <lpage>2473</lpage>
          . URL: https://aclanthology.org/D19-1250. doi:
          <volume>10</volume>
          .18653/ v1/
          <fpage>D19</fpage>
          -1250.
        </mixed-citation>
      </ref>
      <ref id="ref36">
        <mixed-citation>
          [36]
          <string-name>
            <given-names>B.</given-names>
            <surname>AlKhamissi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Celikyilmaz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Diab</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Ghazvininejad</surname>
          </string-name>
          ,
          <article-title>A review on language models as knowledge bases</article-title>
          ,
          <source>arXiv preprint arXiv:2204.06031</source>
          (
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref37">
        <mixed-citation>
          [37]
          <string-name>
            <given-names>R.</given-names>
            <surname>Bommasani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. A.</given-names>
            <surname>Hudson</surname>
          </string-name>
          , E. Adeli,
          <string-name>
            <given-names>R.</given-names>
            <surname>Altman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Arora</surname>
          </string-name>
          , S. von Arx,
          <string-name>
            <given-names>M. S.</given-names>
            <surname>Bernstein</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Bohg</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Bosselut</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Brunskill</surname>
          </string-name>
          , et al.,
          <article-title>On the opportunities and risks of foundation models</article-title>
          ,
          <source>arXiv preprint arXiv:2108.07258</source>
          (
          <year>2021</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref38">
        <mixed-citation>
          [38]
          <string-name>
            <given-names>A.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Pruksachatkun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Nangia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Singh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Michael</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Hill</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Levy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Bowman</surname>
          </string-name>
          ,
          <article-title>Superglue: A stickier benchmark for general-purpose language understanding systems</article-title>
          ,
          <source>Advances in neural information processing systems</source>
          <volume>32</volume>
          (
          <year>2019</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref39">
        <mixed-citation>
          [39]
          <string-name>
            <given-names>J.</given-names>
            <surname>Wei</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Wei</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Tay</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Tran</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Webson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Lu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Zhou</surname>
          </string-name>
          , et al.,
          <article-title>Larger language models do in-context learning diferently</article-title>
          ,
          <source>arXiv preprint arXiv:2303.03846</source>
          (
          <year>2023</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref40">
        <mixed-citation>
          [40]
          <string-name>
            <given-names>H.</given-names>
            <surname>Peng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Hu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Jin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Hou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Liu</surname>
          </string-name>
          , Copen: Probing conceptual
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>