<!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>
      <issn pub-type="ppub">1613-0073</issn>
    </journal-meta>
    <article-meta>
      <title-group>
        <article-title>Models as Knowledge Bases for Visual Word Sense Disambiguation</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Anastasia Kritharoula</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Maria Lymperaiou</string-name>
          <email>marialymp@islab.ntua.gr</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Giorgos Stamou</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="editor">
          <string-name>Visual Word Sense Disambiguation, Multimodal Retrieval, Large Language Models, Language Models as</string-name>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Artificial Intelligence and Learning Systems Laboratory, School of Electrical and Computer Engineering</institution>
          ,
          <addr-line>National</addr-line>
        </aff>
      </contrib-group>
      <abstract>
        <p>Visual Word Sense Disambiguation (VWSD) is a novel challenging task that lies between linguistic sense disambiguation and fine-grained multimodal retrieval. The recent advancements in the development of visiolinguistic (VL) transformers suggest some of-the-self implementations with encouraging results, which however we argue that can be further improved. To this end, we propose some knowledgeenhancement techniques towards improving the retrieval performance of VL transformers via the usage of Large Language Models (LLMs) as Knowledge Bases. More specifically, knowledge stored in LLMs is retrieved with the help of appropriate prompts in a zero-shot manner, achieving performance advancements. Moreover, we convert VWSD to a purely textual question-answering (QA) problem by considering generated image captions as multiple-choice candidate answers. Zero-shot and few-shot prompting strategies are leveraged to explore the potential of such a transformation, while Chain-ofThought (CoT) prompting in the zero-shot setting is able to reveal the internal reasoning steps an LLM follows to select the appropriate candidate. In total, our presented approach is the first one to analyze the merits of exploiting knowledge stored in LLMs in diferent ways to solve WVSD.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>CEUR
ceur-ws.org</p>
    </sec>
    <sec id="sec-2">
      <title>1. Introduction</title>
      <p>
        Visual Word Sense Disambiguation (VWSD) is a newly introduced task, where the most
appropriate candidate image has to be retrieved given an ambiguous target word within a specific
context [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. For example, given the ambiguous target word ”andromeda” within the context
”tree”, the phrase ”andromeda tree” is formulated. The word ”andromeda” itself may have
diferent meanings, referring to a constellation, flower, reptile or fish, and this ambiguity is
mitigated via the given context ”tree”. However, the presence of other tree-related candidate
images complicates the choice of the golden ”andromeda tree” image.
      </p>
      <p>
        VWSD can be viewed as a multimodal extension of textual word sense disambiguation,
which has received some considerable attention in recent years [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. Resolving polysemy has
been approached in several ways, with one of the most prominent being knowledge-based
(G. Stamou)
disambiguation. According to it, knowledge graphs representing linguistic relationships such
as WordNet [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] for English and BabelNet [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] for multilingual disambiguation are exploited to
frame the meaning of an ambiguous word based on its context, alleviating the need for training
during the disambiguation process. More specifically, both WordNet and BabelNet knowledge
graphs utilize synsets, i.e. sets of synonyms which express diferent meanings within diferent
contexts; hence, this structure is inherently related to the problem of sense disambiguation,
since several possible meanings are already explicitly encoded within each knowledge graph.
      </p>
      <p>
        Nevertheless, given the ever-increasing amounts of linguistic information that need to be
stored in a knowledge base, structures such as WordNet and BabelNet naturally face scalability
limitations: novel words, contexts or languages demand high-quality manual engineering of
the related knowledge graphs to accommodate tasks such as word sense disambiguation in
a viable way. For example, given the example phrase ”andromeda tree”, a knowledge base
lacking the target word ”andromeda” or the context ”tree” (with respect to ”andromeda”) would
inevitably lead to disambiguation failure. To this end, the introduction of the Language Models
as Knowledge Bases (LM-as-KB) paradigm [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ] opened a whole new world of possibilities for
knowledge representation. The expressive power of language models allows the extraction of
rich relational knowledge, similar to knowledge obtained when querying a structured knowledge
graph. Despite recent research advancements, the real-world utilization of the LM-as-KB
paradigm is still in its infancy, with several challenges and limitations arising [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. These
challenges interrogate the adoption of the LM-as-KB framework in the visiolinguistic (VL)
setting [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ], even though it is already favored in some tasks, such as Visual Question Answering
[
        <xref ref-type="bibr" rid="ref10 ref8 ref9">8, 9, 10</xref>
        ], Visual Commonsense Reasoning [
        <xref ref-type="bibr" rid="ref11 ref12">11, 12</xref>
        ] and Image Captioning [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ].
      </p>
      <p>In this work, we aim to explore the potential of following the LM-as-KB paradigm towards
resolving VWSD challenges. Specifically, we focus our contributions on two main directions:
• Ambiguous phrases are enriched with knowledge stored in Large Language Models (LLMs)
in a zero-shot fashion to provide more context for multimodal retrieval.
• We explore the conversion of VWSD to textual question-answering (QA) upon which we
apply zero-shot and few-shot prompting strategies. We further investigate the usage of
Chain-of-Thought (CoT) prompting to obtain explanations for LLM-based decisions.</p>
    </sec>
    <sec id="sec-3">
      <title>2. Related work</title>
      <p>
        Language models as Knowledge Bases is a novel paradigm that harnesses the implicit
knowledge stored in neural weights of Language Models (LMs) similar to how explicit
knowledge of Knowledge Graphs (KGs) has served related applications [
        <xref ref-type="bibr" rid="ref5 ref6">5, 6</xref>
        ]. Recent works probe
characteristics of diferent LLM-stored knowledge senses, such as commonsense [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ], factual
[
        <xref ref-type="bibr" rid="ref15">15</xref>
        ] and temporal [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ]. Model scale has revealed unprecedented LM capabilities related to
knowledge, such as diferent types of reasoning; there are open research questions related to
arithmetic [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ], symbolic [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ], commonsense [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ] and causal reasoning [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ] in large LMs, and
whether such models merely overfit large amounts of data or are genuinely capable of reasoning
similar to humans [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ]. More recently, the LM-as-KB paradigm has been favored by the VL
community to enhance popular VL tasks [
        <xref ref-type="bibr" rid="ref10 ref11 ref12 ref7 ref8 ref9">7, 8, 9, 10, 11, 12</xref>
        ], as in the case of the current paper.
Prompting Language Models Traditionally, LMs are pre-trained on large amounts of text
corpora and then fine-tuned on smaller labelled ones to address longstanding challenges in NLP.
Scaling-up to several billion parameters (Large Language Models - LLMs) enables emergent
model capabilities, which can be communicated via prompting [
        <xref ref-type="bibr" rid="ref22">22</xref>
        ]. Diferent prompting
strategies have been proposed, such as zero-shot prompting, where the task is explicitly described
in natural language, and few-shot prompting, where few exemplars are provided to the LM
to guide answer generation [
        <xref ref-type="bibr" rid="ref23">23</xref>
        ]. More specifically, in-context learning (ICL) is a novel
fewshot paradigm where few sample demonstrations from the dataset are used to retrieve related
knowledge stored in the LLM without updating any parameters [
        <xref ref-type="bibr" rid="ref24">24</xref>
        ]. This technique is inspired
from the way humans learn from analogy [
        <xref ref-type="bibr" rid="ref25">25</xref>
        ] and has been successfully applied ever since
to serve several NLP tasks [
        <xref ref-type="bibr" rid="ref26 ref27">26, 27, 28, 29, 30</xref>
        ]. Another human-inspired prompting technique
is Chain-of-Thought (CoT), where the LM is encouraged by the prompt phrasing to generate
rationales together with the predicted answer [31, 32, 33]. Apart from the aforementioned
discrete prompt strategies, soft prompting sacrifices human-interpretable templates to achieve
more advanced knowledge retrieval [34]. In total, prompting can be viewed to be analogous to
querying knowledge graphs in the traditional knowledge retrieval scenario.
      </p>
    </sec>
    <sec id="sec-4">
      <title>3. Method</title>
      <p>
        The retrieval backbones utilized in all cases are pre-trained VL transformers, which place
both images  and textual phrases  in a joint embedding space. The retrieval of the most
appropriate image  with respect to a given text phrase  is performed based on a similarity
score score(, ) = max(sim(, )) , which can be obtained using diferent similarity measures,
such as cosine similarity or euclidean/manhattan distance1. In the baseline case, no knowledge
enhancement is performed, thus image candidates  and original phrases  are passed in the
VL transformer of choice. The VL transformers used are CLIP-L (CLIP [35] with ViT [36]
large encoder), CLIP  (LAION/CLIP ViT-H/14)[37] trained on LAION-2B English subset
of LAION-5B, ALIGN [38], and BLIP [39] variants; specifically for BLIP, BLIP  and BLIP-L
refer to variants pre-trained on COCO [
        <xref ref-type="bibr" rid="ref28">40</xref>
        ] and using ViT base/ViT large as backbone encoders
respectively, while BLIP and BLIP-L variants are pre-trained on Flickr30k [
        <xref ref-type="bibr" rid="ref29">41</xref>
        ].
      </p>
      <p>
        Moreover, based on the observations of Dadas [
        <xref ref-type="bibr" rid="ref30">42</xref>
        ], there are image candidates  that present
high similarity scores with multiple text phrases  , thus imposing a majority bias. To this end,
we adopt the penalty factor () , as introduced in [
        <xref ref-type="bibr" rid="ref30">42</xref>
        ], to diminish the similarity scores for
such frequently similar candidates  , without afecting the similarity scores for the rest of the
candidates. In cases () is incorporated in VL retrieval, the similarity score is altered as:
 (, ) =
sim(, ) − ()
(1)
      </p>
      <sec id="sec-4-1">
        <title>3.1. LLM-based phrase enhancement</title>
        <p>Following the LM-as-KB paradigm, the original text phrases  are transformed to
knowledgeenhanced phrases   by harnessing the rich factual knowledge stored in state-of-the-art LLMs.
1We will be using the term similarity to refer to both cosine similarity and euclidean/manhattan distance.
Zero-shot enhancement is achieved via the usage of discrete prompts that follow specific
handcrafted templates, as presented in Tab. 1. Those templates are created based on human
conversational intuition, encouraging the retrieval of related facts to produce   .</p>
        <p>
          Emerging capabilities of LLMs, such as multiple types of reasoning, are analogous to model
size [
          <xref ref-type="bibr" rid="ref31">33, 43</xref>
          ], demonstrating that models beyond a specific scale may contain more advanced
knowledge. We examine whether this statement also stands for knowledge enrichment by
experimenting with models up to 13B parameters, which correspond to the upper limit our
hardware can accommodate, as well as with orders of magnitude larger models (175B parameters)
accessible via public APIs (susceptible to pre-defined pricing schemes). More specifically, we
use GPT2-XL (1.5B parameters) [
          <xref ref-type="bibr" rid="ref32">44</xref>
          ], BLOOMZ-1.7B &amp; 3B [
          <xref ref-type="bibr" rid="ref33">45</xref>
          ], OPT-2.7B &amp; 6.7B [
          <xref ref-type="bibr" rid="ref34">46</xref>
          ], Galactica
6.7B [
          <xref ref-type="bibr" rid="ref35">47</xref>
          ], LLAMA-7B [
          <xref ref-type="bibr" rid="ref36">48</xref>
          ] and Vicuna 7B &amp; 13B [
          <xref ref-type="bibr" rid="ref37">49</xref>
          ] in the lower-billion scale, as well as the
175B parameter models of GPT-3 [
          <xref ref-type="bibr" rid="ref38">50</xref>
          ] and GPT-3.5-turbo2.
        </p>
        <p>As in the baseline case, we attempt to incorporate the penalty () in the VL retrieval stage,
forming the following knowledge-enhanced similarity score for images  and phrases   :
score(  , ) = sim(  , ) − ()
(2)</p>
      </sec>
      <sec id="sec-4-2">
        <title>3.2. Prompting LLMs with question-answering prompts</title>
        <p>
          We transform VWSD to a question-answering (QA) task by converting the textual phrases  to
questions  that follow handcrafted prompt templates, as presented in Tab. 2. Our
experimentation includes both zero-shot and few-shot prompting. In both scenarios, the LLMs prompted are
the Vicuna-13B [
          <xref ref-type="bibr" rid="ref37">49</xref>
          ] and the 175B GPT-3.5-turbo. Since the LLMs to be prompted can currently
handle textual but not VL inputs, we need to transit to exclusively textual representations for
both images  and phrases  . Therefore, image captioning techniques are leveraged to achieve this
transformation, providing captions   for each image candidate  . We experiment with greedy
search, where only one caption   per  is returned, as well as with beam-search multinomial
sampling using 5 beams, which returns  =10 captions   per image  . The models selected for
captioning are GiT-L [
          <xref ref-type="bibr" rid="ref39">51</xref>
          ] and BLIP-L [39], which are both based on ViT-large [36] encoder, and
ViT-GPT2 [
          <xref ref-type="bibr" rid="ref40">52</xref>
          ], which uses ViT-base as the encoder and GPT-2 [
          <xref ref-type="bibr" rid="ref32">44</xref>
          ] as the decoder. Throughout
this VWSD as QA conversion we aim to leverage diferent aspects of knowledge stored in the
selected LLMs by employing the expressiveness of the designed QA prompts, which allow for
advanced flexibility compared to the knowledge enhancement setting described in Sec. 3.1.
        </p>
        <p>Reasoning capabilities of LLMs can be unlocked via the so-called Chain-of-Thought (CoT)
prompting [33, 32, 31], where the LLM is asked to output a series of intermediate reasoning
2https://platform.openai.com/docs/models/gpt-3-5
think “Q: What is the most appropriate caption for the &lt;context&gt;? Answer choices: (A) &lt;caption for image 1&gt;
(greedy) (B) &lt;caption for image 2&gt; ... A: Let’s think step by step. ”
think “Q: What is the most appropriate group of captions for the &lt;context&gt;? Answer choices: (A) &lt;captions
(beam) for image 1 (separated with comma)&gt; (B) &lt;captions for image 2&gt; ... A: Let’s think step by step. ”
CoT “&lt;think_prompt&gt; &lt;response of LLM with think prompt&gt; Therefore, among A through J, the answer is”
no_CoT “Q: What is the most appropriate caption for the &lt;context&gt;? Answer choices: (A) &lt;caption for image 1&gt;
(greedy) (B) &lt;caption for image 2&gt; ... A: ”
no_CoT “Q: What is the most appropriate group of captions for the &lt;context&gt;? Answer choices: (A) &lt;captions
(beam) for image 1&gt; (B) &lt;captions for image 2&gt; ... A: ”
choose You have ten images, (A) to (J), which are given to you in the form of captions.(A) &lt;caption for image
no_CoT 1&gt;…(J) &lt;caption for image 10&gt; You should choose the image, and therefore the caption that could better
(greedy) represent the &lt;phrase&gt;. What image do you choose?
choose You have ten images, (A) to (J), which are given to you in the form of captions.(A) &lt;captions for image 1
no_CoT (separated with comma)&gt;…(J) &lt;captions for image 10 (separated with comma)&gt; You should choose the
(beam) image, and therefore the set of captions that could better represent the &lt;phrase&gt;. What image do you
choose?
choose You have ten images, (A) to (J), which are given to you in the form of captions. (A) &lt;caption for image 1&gt;
CoT … (J) &lt;caption for image 10&gt; You should choose the image, and therefore the caption that could better
(greedy) represent the &lt;phrase&gt;.</p>
        <p>Use the following format: Question: What image do you choose? Thought: you should always think
about what you choose. Result: the result of your thought. Final Answer: the image that you choose.</p>
        <p>Begin! Question: What image do you choose?
choose You have ten images, (A) to (J), which are given to you in the form of a set of captions. (A) captions
CoT for image 1 (separated with comma) … (J) captions for image 10 (separated with comma) You should
(beam) choose the image, and therefore the set of captions that could better represent the &lt;phrase&gt;.</p>
        <p>
          Use the following format: Question: What image do you choose? Thought: you should always think
about what you choose. Result: the result of your thought. Final Answer: the image that you choose
Begin! Question: What image do you choose?
steps that logically lead to its answer. Even though CoT prompting has mostly been exploited
for multi-step reasoning tasks, it is also able to provide human-understandable explanations
regarding the choice of the most appropriate candidate  for each phrase  . To this end, the
ifrst 5 templates and the prompting pipelines of Tab. 2 are adopted from Kojima et al. [31],
where a ”reasoning” prompt (”Let’s think step by step”/think prompts of Tab. 2) retrieves the
reasoning path stored in the LLM, followed by an ”answer” prompt (”Therefore, [...] the answer
is”/CoT prompt of Tab. 2) that returns the final answer in an appropriate format. The rest of the
templates (”choose” prompt names) are inspired from LangChain prompts [
          <xref ref-type="bibr" rid="ref41">53</xref>
          ], following an
instructive and descriptive template to encourage the selection of the correct image candidate.
        </p>
        <sec id="sec-4-2-1">
          <title>3.2.1. Zero-shot prompting</title>
          <p>In the zero-shot setting, we input a selected prompt from Tab. 2 to the LLM
(Vicuna-13B/GPT3.5-turbo), which generates the answer A. The generated A can be one of the caption options
A-J or a statement that an answer cannot be defined; in any case, A is compared with the ground
truth caption to determine the success or failure of the zero-shot prompting strategy under
investigation. CoT prompts are accompanied with producing an explanation for choosing A.</p>
        </sec>
        <sec id="sec-4-2-2">
          <title>3.2.2. Few-shot prompting</title>
          <p>
            Additionally, we experiment with few-shot prompting in place of the previously described
zero-shot prompting. In this case, we select k no_CoT/choose no_CoT (greedy) prompts (Tab.
2), accompanied by their ground truth A, thus forming QA in-context samples. The number
of in-context samples k is defined by the user. We design three diferent ways of selecting
the k in-context samples. In the baseline case (random), the k samples are randomly selected
from the dataset. Nevertheless, since the relevance of selected samples with respect to a
chosen sample is significant [
            <xref ref-type="bibr" rid="ref42">54</xref>
            ], as well as the sample ordering [
            <xref ref-type="bibr" rid="ref43">55</xref>
            ], we design two
similaritybased sample selection methods, namely top and inverse-top. Both selection methods exploit
embedding representations of full phrases t, which are obtained using ALIGN [38]. The k
nearest embeddings to a given phrase embedding are eficiently retrieved with the help of cosine
similarity. Then, the top ordering strategy places the top-1 most similar QA sample first (which
corresponds to the most similar full phrase embedding), followed by the 2nd most similar QA
sample, until the k-th most similar in the k-th position. On the other hand, the inverse-top
strategy reverses this order by placing the top-1 most similar QA example in the k-th position.
          </p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>4. Experiments</title>
      <sec id="sec-5-1">
        <title>4.1. LLM-based phrase enhancement results</title>
        <p>In Tab. 3 we present results regarding LLM-based phrase enhancement using diferent
LLMs-asKB and the prompts of Tab. 1. More results are provided in Appendix A.</p>
        <p>We can easily observe that LLM-based enhancement helps trespassing baseline accuracy and
MRR scores when appropriate prompting is used, irrespectively of the usage of VL penalty
() ; ”exact” prompt seems to be rather weak towards triggering the necessary knowledge to
further drive VL retrieval, as in several cases metrics corresponding to phrases enhanced using
the ”exact” prompt fall below the baseline performance. On the other hand, ”meaning_of” is
the more powerful prompt attempted, resulting in non-negligible performance advancements
compared to the baselines in most cases. Overall, the combination of GPT-3 phrase enrichment
together with CLIP  (with penalty () ) as the VL retrieval module lead to optimal results.</p>
        <p>An interesting observation is that the Vicuna 7/13B models perform comparably to
GPT3/3.5 models despite being orders of magnitude smaller. This is an encouraging result suggesting
that LLM-based phrase enrichment may be successfully performed with more lightweight LLMs
that do not adhere to a limiting pricing plan, which would impede large-scale experimentation.
However, in most cases that LLMs in the lower-billion scale are employed for knowledge
enhancement (Tab. 8), retrieval results struggle to compete with the knowledge-free baselines,
revealing a non-negligible association between scale and knowledge-enhancement capabilities.</p>
      </sec>
      <sec id="sec-5-2">
        <title>4.2. Question-answering prompting results</title>
        <p>In Tab. 4 we present accuracy scores occurring from transforming VWSD to QA using zero-shot
(with and without CoT) and few-shot (without CoT) prompting, denoting best results per prompt
with color. In general, there is an obvious discrepancy between the performance of
GPT-3.5turbo and Vicuna-13B, denoting that model scale does matter in the VWSD as QA scenario,
contrary to the phrase enhancement case (Sec. 4.1): smaller models do not possess the necessary
knowledge or reasoning abilities to infer the correct answer from captions in the QA setting, no
matter the prompt template deployed or the choice between zero-shot/few-shot strategy. This
ifnding agrees with the observation of Kojima et al. [31] that LLM reasoning capabilities emerge
at scale. Moreover, there is no clear pattern whether beam or greedy captioning is more efective
towards triggering the necessary knowledge: in the case of GiT-L and BLIP-L there is a clear
preference towards greedy decoding in conjunction with CoT &amp; no_CoT prompting. Especially
for Vicuna-13B this preference is very distinctive, demonstrating significant performance drops
when beam decoding is employed in place of greedy decoding. However, the opposite holds for
ViT-GPT2, even though the overall performance of ViT-GPT2 is lower in comparison to the
other captioners. The performance becomes even worse when beam decoding is employed with
few-shot prompting. At the same time, ”choose” prompts do not demonstrate a distinct pattern
with respect to the decoding strategy (greedy/beam) as well. Overall, GiT-L (greedy) exhibits the
most promising captioning capabilities in the majority of Tab. 4 results, while BLIP-L (greedy)
appears more capable in the few-shot prompting setting of Vicuna-13B (colored cells).</p>
        <sec id="sec-5-2-1">
          <title>4.2.1. Zero-shot prompting and CoT reasoning</title>
          <p>
            According to Tab. 4, accuracy results with zero-shot QA prompting are not always encouraging,
especially when compared to LLM-based enrichment results of Tab. 3, which approach
state-ofthe-art performance. Apart from the fact that proper LLM reasoning is still an open problem
[
            <xref ref-type="bibr" rid="ref44 ref45">56, 57</xref>
            ], one possible fundamental reason for these lower accuracy scores can be the conversion
from images to text via captioning: this intra-modality conversion may induce errors and
information loss that impacts the final performance. Of course, lower performance will also
afect the quality of the produced explanations, when CoT is employed. We delve into this
scenario by presenting an example where the usage of CoT leads to an erroneous answer,
while the no_CoT case succeeds. In Fig. 1 the candidates for the phrase ”tender embrace” are
showcased. By employing GiT-L (greedy) as the image captioner, we form the question Q as:
Q: What is the most appropriate caption for the tender embrace? Answer Choices: (A) a small boat sitting on top of a
dock. (B) a group of people walking on a green hill. (C) a student gets a hug from a student. (D) a large fly laying on a
rock in the water. (E) the bus stop at the station (F) a train is parked at a station. (G) a crowd of people watching a
concert. (H) a train station with a sign on the side of it. (I) a black and red train on a track. (J) a man laying in the
sand on top of a surfboard.
          </p>
          <p>A
F</p>
          <p>B
G</p>
          <p>C (Gold image)</p>
          <p>H</p>
          <p>D
I</p>
          <p>E
J</p>
          <p>In Tab. 5 the results of GPT-3.5-turbo with and without zero-shot CoT are demonstrated.
Q: What is the most appropriate [...]
A: Let’s think step by step.</p>
          <p>First, we need to understand what the tender embrace is referring to. Once we know that, we can look at
the answer choices and find the one that best matches the subject of the photo. Therefore, without further
information about the photo, it is not possible to choose the most appropriate caption. Could you please provide
more context or information about the photo?
Therefore, among A through J, the answer is not applicable without more information about the photo” X</p>
          <p>After observing the captions   produced by GiT-L, we confirm that they accurately describe
the context, thus being appropriate answer options. Nevertheless, when prompted with CoT in
a zero-shot manner, GPT-3.5-turbo is unable to define where ”tender embrace” refers to without
receiving more information. On the contrary, it successfully returns the right answer when no
CoT is used. This discrepancy reveals that even though the knowledge regarding the phrase
”tender embrace” exists within the LLM, zero-shot CoT prompting is unable to trigger it. This
can be viewed as an inherent problem of CoT prompting, at least in the zero-shot setting, since
the only factor that difers between successful and unsuccessful reasoning is the prompt itself.</p>
          <p>On the other hand, zero-shot CoT prompting can provide valuable insights in several cases,
such as the one presented in Fig. 2 with candidates corresponding to the phrase ”metal steel”.
By again using GiT-L as the captioner, the question Q is formed as:</p>
          <p>Q: What is the most appropriate caption for the metal steel? Answer Choices: (A) a chocolate bar with three sides (B)
[unused0] and [unused0] at the concert in 2007 (C) a guitar and a guitar are displayed in front of a speaker. (D) frosty
patterns on a window (E) gold in the rocks - - (F) a black piece of metal with a large black square in the middle. (G) a
jar of honey on a wooden table. (H) a close up of a metal plate with a pattern of lines. (I) a large white quartz rock
with a clear base. (J) gold jewelry from the late 19th century.</p>
          <p>A
F</p>
          <p>B
G</p>
          <p>C
H (Gold image)</p>
          <p>D
I</p>
          <p>E
J</p>
          <p>Then, GPT-3.5-turbo outputs the results presented in Tab. 6, successfully guided by CoT.
Q: What is the most appropriate [...]
A: The most appropriate caption for the metal steel would be (F) a black piece of metal with a large black square
in the middle. X
Q: What is the most appropriate [...]
A: Let’s think step by step.</p>
          <p>First, we need to understand what metal steel is and what its characteristics are. Steel is a hard and strong metal
alloy made mainly of iron and carbon. It is often used in construction, machinery, and transportation. Based on
this information, the most appropriate caption for metal steel would be (H) a close up of a metal plate with a
pattern of lines. This caption describes the texture and appearance of steel, which is often characterized by its
distinctive pattern of lines. The other options do not accurately describe steel or its unique qualities.
Therefore, among A through J, the answer is (H) a close up of a metal plate with a pattern of lines.” 4</p>
          <p>This analysis highlights that the current state of CoT reasoning cannot be entirely trusted, as the
deployment of CoT prompts themselves may drive the LLM towards incorrect reasoning paths.
Thus, CoT reasoning for VWSD is not yet mature enough to provide valuable explanations.</p>
          <p>Furthermore, regarding the comparison between standalone CoT/no_CoT prompts and
”choose” CoT/no_CoT prompts, there is a clear performance advancement when ”choose”
prompts are leveraged, reaching more than 10% performance gain in the case of BLIP-L (beam)
as captioner and GPT-3.5-turbo as the LLM to be prompted. We regard this as an evidence that
more descriptive and motivating prompts can better evoke the correct reasoning process of an
LLM. Finally, there is no clear indication of whether CoT facilitates performance over no_CoT
when combined with the ”choose” prompting template, since best results per captioner and
LLM of Tab. 4 alternate between ”choose” CoT/no_CoT strategies, and are often comparable.</p>
        </sec>
        <sec id="sec-5-2-2">
          <title>4.2.2. Few-shot prompting</title>
          <p>In the baseline few-shot setting (few-shot (random)), we randomly select k=5 instances to serve
as in-context examples. These in-context samples are comprised of k questions Q followed
by their ground truth answer choice, as described in Sec. 3.2.2. Results of Tab. 4 denote that
few-shot performance using no_CoT prompts is significantly better compared to their zero-shot
counterparts, while generally being on par with ”choose” prompt results, even though the
derived accuracy is close to random choice or even worse in most cases. Therefore, despite the
advanced engineering few-shot prompting requires compared to the zero-shot setting, it can
be regarded as a more viable choice for retrieving internal reasoning capabilities of LLMs. As
for the choice of in-context sample selection and order strategy, the results are not conclusive;
similarity-based sample selection (top &amp; inv. top columns of Tab. 4) may result in better
(GIT-L greedy), worse (ViT-GPT2 beam) or comparable results to the random baseline accuracy.
Moreover, sample ordering (top versus inv. top) presents some variability in accuracy, with each
strategy performing better in diferent cases. Overall, we can state that few-shot prompting calls
for more extensive experimentation beyond the purpose of the current work until a standard
pattern emerges, while there is a possibility that no pattern can be inferred at all.</p>
          <p>We are going to present some qualitative results regarding few-shot prompting. Fig. 3
contains candidates corresponding to the phrase ”football goal”, while GiT-L (greedy) serves as
the captioner. The k=5 in-context samples are demonstrated in Tab. 7 followed by the answer
A generated by GPT-3.5-turbo (in color) corresponding to the given Q. In the presented case,
in-context prompting achieves in guiding GPT-3.5-turbo to select the correct candidate I.</p>
          <p>A
F</p>
          <p>B
G</p>
          <p>C
H</p>
          <p>D
I (Gold image)</p>
          <p>E
J</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>5. Conclusion</title>
      <p>In this work, we explore the conjunction of the Visual Word Sense Disambiguation task and
Large Language Models. More specifically, our current paper is the first one to harness the
rich knowledge stored in LLMs via diferent prompting strategies. Following the LLM-as-KB
paradigm we managed to boost the performance of baseline visiolinguistic pipelines.
Moreover, we examined the potential of unimodal approaches by converting VWSD to a textual
question-answer problem, where generated image captions are leveraged as multiple-choice
Q: What is the most appropriate caption for the vanillin compound? Answer Choices: (A) a fossil fossil with a spiral
pattern (B) a blue plate topped with pastries and a piece of bread. (C) the bones of the foot are very thin. (D) a
spoon full of sugar on a table. (E) the tower of the building is made of brick. (F) a pair of sunglasses with a white
background. (G) a close up of a plant with a yellow flower. (H) turmeric powder in a bowl (I) a man with glasses
and a tie sitting at a desk. (J) a close up of a bike tire with a yellow tag on it. A: (D) a spoon full of sugar on a table.
Q: What is the most appropriate caption for the nankeen fabric? Answer Choices: (A) a close up of a white quilt with
a tree design on it. (B) a man in a blue jacket and tan pants holding a sword. (C) a collection of brass trombones (D)
a close up of a green plant (E) a pine tree in the forest (F) a row of mannequins in black dresses. (G) two boys are
standing in front of a red wall. (H) two apples sitting next to each other on a white surface. (I) a cartoon of two
women in fancy hats and a mirror. (J) a close up of a woman’s face with a round ball on her forehead. A: (B) a man
in a blue jacket and tan pants holding a sword.</p>
      <p>Q: What is the most appropriate caption for the olmec indian? Answer Choices: (A) a large stone head in a garden (B)
a woman lighting a candle at a table (C) [ unused0 ] is the new champion of the world (D) a table full of food (E) a
group of women holding banners in a protest. (F) a woman in a traditional dress stands in front of a tent. (G) a
man in a suit sitting in a chair. (H) a clay pot with a small hole on top of it. (I) a close up of three green leaves of a
plant (J) a fern in the forest near the lake A: (A) a large stone head in a garden
Q: What is the most appropriate caption for the charales order? Answer Choices: (A) a man walking past a store with
a sign on it. (B) the road to the island (C) the art of the flower (D) a black snake with white spots on it’s body. (E) a
bird perched on a branch in a tree. (F) a lion roaring in the wild. (G) a man falling from a skateboard (H) a large,
thin, green plant with long thin leaves. (I) a close up of a bush with blue berries (J) a mouse in a hollow log. A: (H)
a large, thin, green plant with long thin leaves.</p>
      <p>Q: What is the most appropriate caption for the skink lizard? Answer Choices: (A) two lizards on a log with a log
in the background. (B) a man walking past a store with a sign on it. (C) the art of the flower (D) a portrait of [
unused0 ], seated at a desk in front of a telescope. (E) the car is a small car that can be found in the museum. (F) a
black snake with white spots on it’s body. (G) a bird perched on a branch in a tree. (H) a close up of a bush with
blue berries (I) a close up of a metal container with a white label on it. (J) a white door with a glass window A: (A)
two lizards on a log with a log in the background.</p>
      <p>Q: What is the most appropriate caption for the football goal? Answer Choices: (A) a large stadium with a large field
and a large structure. (B) a woman wearing a blue ski mask (C) [ unused0 ] of spain during the fifa world cup brazil
group a match between spain and argentina at the estadio santiago bernabeu on june 25, 2010 in santiago, chile.
(D) a woman lifting a barbell in a competition. (E) a man in a suit and tie looking at the camera. (F) person is a
player for football team (G) [ unused0 ], the brazilian national team, in the 1960s. (H) the empty stand at the old
traford stadium (I) a soccer field with a goal post in the middle (J) the emblem of the football club of the italian
football club of the italian football club of the italian football club of the italian football club of the italian football
club of the italian football club of the A: (I) a soccer field with a goal post in the middle 4
candidates. Finally, Chain-of-Thought prompting highlighted human-interpretable
explainability aspects tied to the LLM-based knowledge extraction process. Overall, our analysis reveals
the importance of model scale towards performing knowledge-related tasks with LLMs.</p>
    </sec>
    <sec id="sec-7">
      <title>Acknowledgments</title>
      <p>The research work was supported by the Hellenic Foundation for Research and Innovation
(HFRI) under the 3rd Call for HFRI PhD Fellowships (Fellowship Number 5537). The work
presented in this paper is co-funded by the European Union under the project AI4Culture,
DIGITAL-2022-CULTURAL-02, Grant Agreement 101100683.
T. Wang, T. Nkinyili, T. Schick, T. Kornev, T. Tunduny, T. Gerstenberg, T. Chang, T. Neeraj,
T. Khot, T. Shultz, U. Shaham, V. Misra, V. Demberg, V. Nyamai, V. Raunak, V. Ramasesh,
V. U. Prabhu, V. Padmakumar, V. Srikumar, W. Fedus, W. Saunders, W. Zhang, W. Vossen,
X. Ren, X. Tong, X. Zhao, X. Wu, X. Shen, Y. Yaghoobzadeh, Y. Lakretz, Y. Song, Y. Bahri,
Y. Choi, Y. Yang, Y. Hao, Y. Chen, Y. Belinkov, Y. Hou, Y. Hou, Y. Bai, Z. Seid, Z. Zhao,
Z. Wang, Z. J. Wang, Z. Wang, Z. Wu, Beyond the imitation game: Quantifying and
extrapolating the capabilities of language models, 2022. arXiv:2206.04615.
[28] S. Sia, K. Duh, In-context learning as maintaining coherency: A study of on-the-fly machine
translation using large language models, 2023. arXiv:2305.03573.
[29] M. Pourreza, D. Rafiei, Din-sql: Decomposed in-context learning of text-to-sql with
selfcorrection, 2023. arXiv:2304.11015.
[30] D. Zhou, N. Schärli, L. Hou, J. Wei, N. Scales, X. Wang, D. Schuurmans, C. Cui, O. Bousquet,
Q. Le, E. Chi, Least-to-most prompting enables complex reasoning in large language
models, 2023. arXiv:2205.10625.
[31] T. Kojima, S. S. Gu, M. Reid, Y. Matsuo, Y. Iwasawa, Large language models are zero-shot
reasoners, 2023. arXiv:2205.11916.
[32] X. Wang, J. Wei, D. Schuurmans, Q. Le, E. Chi, S. Narang, A. Chowdhery, D. Zhou,
Self-consistency improves chain of thought reasoning in language models, 2023.
arXiv:2203.11171.
[33] T. Kojima, S. S. Gu, M. Reid, Y. Matsuo, Y. Iwasawa, Large language models are zero-shot
reasoners, 2023. arXiv:2205.11916.
[34] G. Qin, J. Eisner, Learning how to ask: Querying LMs with mixtures of soft prompts, in:
Proceedings of the 2021 Conference of the North American Chapter of the Association for
Computational Linguistics: Human Language Technologies, Association for Computational
Linguistics, Online, 2021, pp. 5203–5212. URL: https://aclanthology.org/2021.naacl-main.410.
doi:10.18653/v1/2021.naacl-main.410.
[35] A. Radford, J. W. Kim, C. Hallacy, A. Ramesh, G. Goh, S. Agarwal, G. Sastry, A. Askell,
P. Mishkin, J. Clark, G. Krueger, I. Sutskever, Learning transferable visual models from
natural language supervision, 2021. arXiv:2103.00020.
[36] A. Dosovitskiy, L. Beyer, A. Kolesnikov, D. Weissenborn, X. Zhai, T. Unterthiner, M.
Dehghani, M. Minderer, G. Heigold, S. Gelly, J. Uszkoreit, N. Houlsby, An image is worth
16x16 words: Transformers for image recognition at scale, in: International Conference
on Learning Representations, 2021. URL: https://openreview.net/forum?id=YicbFdNTTy.
[37] C. Schuhmann, R. Beaumont, R. Vencu, C. W. Gordon, R. Wightman, M. Cherti, T. Coombes,
A. Katta, C. Mullis, M. Wortsman, P. Schramowski, S. R. Kundurthy, K. Crowson, L. Schmidt,
R. Kaczmarczyk, J. Jitsev, LAION-5b: An open large-scale dataset for training next
generation image-text models, in: Thirty-sixth Conference on Neural Information Processing
Systems Datasets and Benchmarks Track, 2022. URL: https://openreview.net/forum?id=
M3Y74vmsMcY.
[38] C. Jia, Y. Yang, Y. Xia, Y.-T. Chen, Z. Parekh, H. Pham, Q. V. Le, Y. Sung, Z. Li, T. Duerig,
Scaling up visual and vision-language representation learning with noisy text supervision
(2021). URL: https://arxiv.org/abs/2102.05918. doi:10.48550/ARXIV.2102.05918.
[39] J. Li, D. Li, C. Xiong, S. Hoi, Blip: Bootstrapping language-image pre-training for unified
vision-language understanding and generation, 2022. arXiv:2201.12086.</p>
    </sec>
    <sec id="sec-8">
      <title>A. Scale significance for knowledge enhancement</title>
      <p>As an extension of Tab. 3, we presents results regarding LLM-enhancements using other LLMs
(1.7B to 7B parameters) in Tab. 8.</p>
      <p>Compared to Tab. 3, smaller models present more mediocre knowledge enhancement
capabilities, frequently scoring below the knowledge-free VL retrieval baseline. Such a result indicates
that knowledge enhancement is not a ”free-lunch” solution to boost results, but requires tuning
several aspects of the process in order to benefit the downstream task. Therefore, despite the
encouraging performance of Vicuna7B/13B models, other LLMs in the lower-billion range do not
possess the necessary knowledge capabilities to efectively perform knowledge enhancement
for VWSD. Therefore, we can conclude that similarly to the QA prompting that demonstrated
the need for scale, also prompting for knowledge enhancement is strongly associated with
model size. To this end, we verify that smaller models with competitive capabilities, similar to
the Vicuna series, need to be develop in order to facilitate applications related -but not
limitedto LLM-based knowledge-enhancement.</p>
    </sec>
    <sec id="sec-9">
      <title>B. Reproducibility</title>
      <p>Our code can be found in GitHub: https://github.com/anastasiakrith/llm-for-vwsd/.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>A.</given-names>
            <surname>Raganato</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Calixto</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Ushio</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Camacho-Collados</surname>
          </string-name>
          , M. T. Pilehvar, SemEval
          <article-title>-2023 Task 1: Visual Word Sense Disambiguation</article-title>
          ,
          <source>in: Proceedings of the 17th International Workshop on Semantic Evaluation (SemEval-2023)</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Toronto, Canada,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>M.</given-names>
            <surname>Bevilacqua</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Pasini</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Raganato</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Navigli</surname>
          </string-name>
          ,
          <article-title>Recent trends in word sense disambiguation: A survey</article-title>
          , in: Z.
          <string-name>
            <surname>-H. Zhou</surname>
          </string-name>
          (Ed.),
          <source>Proceedings of the Thirtieth International Joint Conference on Artificial Intelligence, IJCAI-21, International Joint Conferences on Artificial Intelligence Organization</source>
          ,
          <year>2021</year>
          , pp.
          <fpage>4330</fpage>
          -
          <lpage>4338</lpage>
          . URL: https://doi.org/10.24963/ijcai.
          <year>2021</year>
          /593. doi:
          <volume>10</volume>
          .24963/ijcai.
          <year>2021</year>
          /593, survey Track.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>C.</given-names>
            <surname>Fellbaum</surname>
          </string-name>
          ,
          <string-name>
            <surname>Wordnet:</surname>
          </string-name>
          <article-title>An electronic lexical database (</article-title>
          <year>1998</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>R.</given-names>
            <surname>Navigli</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. P.</given-names>
            <surname>Ponzetto</surname>
          </string-name>
          ,
          <article-title>Babelnet: The automatic construction, evaluation and application of a wide-coverage multilingual semantic network</article-title>
          ,
          <source>Artificial Intelligence</source>
          <volume>193</volume>
          (
          <year>2012</year>
          )
          <fpage>217</fpage>
          -
          <lpage>250</lpage>
          . URL: https://www.sciencedirect.com/science/article/pii/ S0004370212000793. doi:https://doi.org/10.1016/j.artint.
          <year>2012</year>
          .
          <volume>07</volume>
          .001.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <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>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. H.</given-names>
            <surname>Miller</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Riedel</surname>
          </string-name>
          ,
          <article-title>Language models as knowledge bases?</article-title>
          ,
          <year>2019</year>
          . arXiv:
          <year>1909</year>
          .01066.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <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>
          ,
          <year>2022</year>
          . arXiv:
          <volume>2204</volume>
          .
          <fpage>06031</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>M.</given-names>
            <surname>Lymperaiou</surname>
          </string-name>
          ,
          <string-name>
            <surname>G. Stamou,</surname>
          </string-name>
          <article-title>The contribution of knowledge in visiolinguistic learning: A survey on tasks and challenges</article-title>
          ,
          <year>2023</year>
          . arXiv:
          <volume>2303</volume>
          .
          <fpage>02411</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>A. M. H.</given-names>
            <surname>Tiong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Savarese</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. C. H.</given-names>
            <surname>Hoi</surname>
          </string-name>
          ,
          <string-name>
            <surname>Plug-</surname>
          </string-name>
          and
          <article-title>-play vqa: Zero-shot vqa by conjoining large pretrained models with zero training</article-title>
          ,
          <source>in: Conference on Empirical Methods in Natural Language Processing</source>
          ,
          <year>2022</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>J.</given-names>
            <surname>Guo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. M. H.</given-names>
            <surname>Tiong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Tao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Hoi</surname>
          </string-name>
          ,
          <article-title>From images to textual prompts: Zero-shot vqa with frozen large language models</article-title>
          ,
          <source>ArXiv abs/2212</source>
          .10846 (
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>J.</given-names>
            <surname>Guo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. M. H.</given-names>
            <surname>Tiong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Tao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Hoi</surname>
          </string-name>
          ,
          <article-title>From images to textual prompts: Zero-shot vqa with frozen large language models</article-title>
          ,
          <source>ArXiv abs/2212</source>
          .10846 (
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>P.</given-names>
            <surname>Lu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Mishra</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Xia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Qiu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.-W.</given-names>
            <surname>Chang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.-C.</given-names>
            <surname>Zhu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Tafjord</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Clark</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Kalyan</surname>
          </string-name>
          ,
          <article-title>Learn to explain: Multimodal reasoning via thought chains for science question answering</article-title>
          ,
          <year>2022</year>
          . URL: https://arxiv.org/abs/2209.09513. doi:
          <volume>10</volume>
          .48550/ARXIV.2209.09513.
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Zhao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Karypis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Smola</surname>
          </string-name>
          ,
          <article-title>Multimodal chain-of-thought reasoning in language models</article-title>
          ,
          <year>2023</year>
          . URL: https://arxiv.org/abs/2302.00923. doi:
          <volume>10</volume>
          .48550/ ARXIV.2302.00923.
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>R.</given-names>
            <surname>Mokady</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Hertz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. H.</given-names>
            <surname>Bermano</surname>
          </string-name>
          , Clipcap:
          <article-title>Clip prefix for image captioning</article-title>
          ,
          <source>ArXiv abs/2111</source>
          .09734 (
          <year>2021</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>X. L.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Kuncoro</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Hofmann</surname>
          </string-name>
          , C. de Masson d'Autume,
          <string-name>
            <given-names>P.</given-names>
            <surname>Blunsom</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Nematzadeh</surname>
          </string-name>
          ,
          <article-title>A systematic investigation of commonsense knowledge in large language models</article-title>
          ,
          <year>2022</year>
          . arXiv:
          <volume>2111</volume>
          .
          <fpage>00607</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>P.</given-names>
            <surname>Pezeshkpour</surname>
          </string-name>
          ,
          <article-title>Measuring and modifying factual knowledge in large language models</article-title>
          ,
          <year>2023</year>
          . arXiv:
          <volume>2306</volume>
          .
          <fpage>06264</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>B.</given-names>
            <surname>Dhingra</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. R.</given-names>
            <surname>Cole</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. M.</given-names>
            <surname>Eisenschlos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Gillick</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Eisenstein</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W. W.</given-names>
            <surname>Cohen</surname>
          </string-name>
          ,
          <article-title>Timeaware language models as temporal knowledge bases</article-title>
          ,
          <source>Transactions of the Association for Computational Linguistics</source>
          <volume>10</volume>
          (
          <year>2022</year>
          )
          <fpage>257</fpage>
          -
          <lpage>273</lpage>
          . URL: https://aclanthology.org/
          <year>2022</year>
          .tacl-
          <volume>1</volume>
          .15. doi:
          <volume>10</volume>
          .1162/tacl_a_
          <fpage>00459</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>A.</given-names>
            <surname>Amini</surname>
          </string-name>
          , S. Gabriel,
          <string-name>
            <given-names>S.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Koncel-Kedziorski</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Choi</surname>
          </string-name>
          , H. Hajishirzi,
          <article-title>MathQA: Towards interpretable math word problem solving with operation-based formalisms</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>2357</fpage>
          -
          <lpage>2367</lpage>
          . URL: https://aclanthology.org/N19-1245. doi:
          <volume>10</volume>
          .18653/v1/
          <fpage>N19</fpage>
          -1245.
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <given-names>J.</given-names>
            <surname>Wei</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Schuurmans</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Bosma</surname>
          </string-name>
          ,
          <string-name>
            <surname>E. H.</surname>
          </string-name>
          <article-title>hsin</article-title>
          <string-name>
            <surname>Chi</surname>
            ,
            <given-names>Q.</given-names>
          </string-name>
          <string-name>
            <surname>Le</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Zhou</surname>
          </string-name>
          ,
          <article-title>Chain of thought prompting elicits reasoning in large language models</article-title>
          ,
          <source>ArXiv abs/2201</source>
          .11903 (
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <given-names>P.</given-names>
            <surname>Bhargava</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Ng</surname>
          </string-name>
          ,
          <article-title>Commonsense knowledge reasoning and generation with pre-trained language models: A survey</article-title>
          ,
          <year>2022</year>
          . URL: https://arxiv.org/abs/2201.12438. doi:
          <volume>10</volume>
          .48550/ ARXIV.2201.12438.
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <given-names>J.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Yu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Ettinger</surname>
          </string-name>
          ,
          <article-title>Counterfactual reasoning: Do language models need world knowledge for causal understanding</article-title>
          ?,
          <year>2022</year>
          . arXiv:
          <volume>2212</volume>
          .
          <fpage>03278</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <given-names>J.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <surname>K. C.-C. Chang</surname>
          </string-name>
          ,
          <article-title>Towards reasoning in large language models: A survey</article-title>
          ,
          <source>ArXiv abs/2212</source>
          .10403 (
          <year>2022</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [22]
          <string-name>
            <given-names>P.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Yuan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Fu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Jiang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Hayashi</surname>
          </string-name>
          , G. Neubig,
          <article-title>Pre-train, prompt, and predict: A systematic survey of prompting methods in natural language processing</article-title>
          ,
          <year>2021</year>
          . arXiv:
          <volume>2107</volume>
          .
          <fpage>13586</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [23]
          <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>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Agarwal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Herbert-Voss</surname>
          </string-name>
          , G. Krueger,
          <string-name>
            <given-names>T.</given-names>
            <surname>Henighan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Child</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Ramesh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Ziegler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Wu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Winter</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Hesse</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Chen</surname>
          </string-name>
          , E. Sigler,
          <string-name>
            <given-names>M.</given-names>
            <surname>Litwin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Gray</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Chess</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Clark</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Berner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>McCandlish</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Radford</surname>
          </string-name>
          ,
          <string-name>
            <given-names>I.</given-names>
            <surname>Sutskever</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Amodei</surname>
          </string-name>
          ,
          <article-title>Language models are few-shot learners</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>1877</fpage>
          -
          <lpage>1901</lpage>
          . URL: https://proceedings.neurips.cc/paper_files/ paper/2020/file/1457c0d6bfcb4967418bfb8ac142f64a-Paper.pdf.
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [24]
          <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>L.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Sui</surname>
          </string-name>
          ,
          <article-title>A survey on in-context learning</article-title>
          ,
          <year>2023</year>
          . arXiv:
          <volume>2301</volume>
          .
          <fpage>00234</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          [25]
          <string-name>
            <given-names>P. H.</given-names>
            <surname>Winston</surname>
          </string-name>
          ,
          <article-title>Learning and reasoning by analogy</article-title>
          ,
          <source>Commun. ACM</source>
          <volume>23</volume>
          (
          <year>1980</year>
          )
          <fpage>689</fpage>
          -
          <lpage>703</lpage>
          . URL: https://doi.org/10.1145/359038.359042. doi:
          <volume>10</volume>
          .1145/359038.359042.
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          [26]
          <string-name>
            <given-names>F.</given-names>
            <surname>Shi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Suzgun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Freitag</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Srivats</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Vosoughi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H. W.</given-names>
            <surname>Chung</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Tay</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Ruder</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <surname>D. Das</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Wei</surname>
          </string-name>
          ,
          <article-title>Language models are multilingual chain-of-thought reasoners</article-title>
          ,
          <year>2022</year>
          . arXiv:
          <volume>2210</volume>
          .
          <fpage>03057</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          [27]
          <string-name>
            <given-names>A.</given-names>
            <surname>Srivastava</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Rastogi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Rao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. A. M.</given-names>
            <surname>Shoeb</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Abid</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Fisch</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. R.</given-names>
            <surname>Brown</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Santoro</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Gupta</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Garriga-Alonso</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Kluska</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Lewkowycz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Agarwal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Power</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Ray</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Warstadt</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. W.</given-names>
            <surname>Kocurek</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Safaya</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Tazarv</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Xiang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Parrish</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Nie</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Hussain</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Askell</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Dsouza</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Slone</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Rahane</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. S.</given-names>
            <surname>Iyer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Andreassen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Madotto</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Santilli</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Stuhlmüller</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Dai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>La</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Lampinen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Zou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Jiang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Vuong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Gupta</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Gottardi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Norelli</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Venkatesh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Gholamidavoodi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Tabassum</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Menezes</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Kirubarajan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Mullokandov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Sabharwal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Herrick</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Efrat</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Erdem</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Karakaş</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B. R.</given-names>
            <surname>Roberts</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B. S.</given-names>
            <surname>Loe</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Zoph</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Bojanowski</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Özyurt</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Hedayatnia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Neyshabur</surname>
          </string-name>
          ,
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          [40]
          <string-name>
            <surname>T.-Y. Lin</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Maire</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Belongie</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <string-name>
            <surname>Bourdev</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Girshick</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Hays</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Perona</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Ramanan</surname>
            ,
            <given-names>C. L.</given-names>
          </string-name>
          <string-name>
            <surname>Zitnick</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Dollár</surname>
          </string-name>
          , Microsoft coco: Common objects in context,
          <year>2015</year>
          . arXiv:
          <volume>1405</volume>
          .
          <fpage>0312</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          [41]
          <string-name>
            <given-names>P.</given-names>
            <surname>Young</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Lai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Hodosh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Hockenmaier</surname>
          </string-name>
          ,
          <article-title>From image descriptions to visual denotations: New similarity metrics for semantic inference over event descriptions, Transactions of the Association for Computational Linguistics 2 (</article-title>
          <year>2014</year>
          )
          <fpage>67</fpage>
          -
          <lpage>78</lpage>
          . URL: https://aclanthology.org/ Q14-1006. doi:
          <volume>10</volume>
          .1162/tacl_a_
          <fpage>00166</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref30">
        <mixed-citation>
          [42]
          <string-name>
            <given-names>S.</given-names>
            <surname>Dadas</surname>
          </string-name>
          , Opi at semeval
          <year>2023</year>
          task
          <article-title>1: Image-text embeddings and multimodal information retrieval for visual word sense disambiguation</article-title>
          ,
          <year>2023</year>
          . arXiv:
          <volume>2304</volume>
          .
          <fpage>07127</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref31">
        <mixed-citation>
          [43]
          <string-name>
            <given-names>J.</given-names>
            <surname>Wei</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Schuurmans</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Bosma</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Ichter</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Xia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Chi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Le</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <article-title>Chainof-thought prompting elicits reasoning in large language models</article-title>
          ,
          <year>2023</year>
          . arXiv:
          <volume>2201</volume>
          .
          <fpage>11903</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref32">
        <mixed-citation>
          [44]
          <string-name>
            <given-names>A.</given-names>
            <surname>Radford</surname>
          </string-name>
          ,
          <string-name>
            <surname>J. Wu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Child</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Luan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Amodei</surname>
          </string-name>
          ,
          <string-name>
            <given-names>I.</given-names>
            <surname>Sutskever</surname>
          </string-name>
          , et al.,
          <article-title>Language models are unsupervised multitask learners</article-title>
          ,
          <source>OpenAI blog 1</source>
          (
          <year>2019</year>
          )
          <article-title>9</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref33">
        <mixed-citation>
          [45]
          <string-name>
            <given-names>N.</given-names>
            <surname>Muennighof</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Sutawika</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Roberts</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Biderman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T. L.</given-names>
            <surname>Scao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. S.</given-names>
            <surname>Bari</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Shen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.-X.</given-names>
            <surname>Yong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Schoelkopf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Tang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Radev</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. F.</given-names>
            <surname>Aji</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Almubarak</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Albanie</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Alyafeai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Webson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Raf</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Rafel</surname>
          </string-name>
          ,
          <article-title>Crosslingual generalization through multitask ifnetuning</article-title>
          ,
          <year>2023</year>
          . arXiv:
          <volume>2211</volume>
          .
          <fpage>01786</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref34">
        <mixed-citation>
          [46]
          <string-name>
            <given-names>S.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , S. Roller,
          <string-name>
            <given-names>N.</given-names>
            <surname>Goyal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Artetxe</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Dewan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Diab</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X. V.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Mihaylov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Ott</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Shleifer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Shuster</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Simig</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P. S.</given-names>
            <surname>Koura</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Sridhar</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Zettlemoyer</surname>
          </string-name>
          , Opt: Open pre-trained
          <source>transformer language models</source>
          ,
          <year>2022</year>
          . arXiv:
          <volume>2205</volume>
          .
          <fpage>01068</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref35">
        <mixed-citation>
          [47]
          <string-name>
            <given-names>R.</given-names>
            <surname>Taylor</surname>
          </string-name>
          , M. Kardas, G. Cucurull,
          <string-name>
            <given-names>T.</given-names>
            <surname>Scialom</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Hartshorn</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Saravia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Poulton</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Kerkez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Stojnic</surname>
          </string-name>
          ,
          <article-title>Galactica: A large language model for science</article-title>
          ,
          <year>2022</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref36">
        <mixed-citation>
          [48]
          <string-name>
            <given-names>H.</given-names>
            <surname>Touvron</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Lavril</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Izacard</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Martinet</surname>
          </string-name>
          , M.
          <article-title>-</article-title>
          <string-name>
            <surname>A. Lachaux</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Lacroix</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          <string-name>
            <surname>Rozière</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Goyal</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          <string-name>
            <surname>Hambro</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          <string-name>
            <surname>Azhar</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Rodriguez</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Joulin</surname>
          </string-name>
          , E. Grave, G. Lample,
          <article-title>Llama: Open and eficient foundation language models</article-title>
          ,
          <source>arXiv preprint arXiv:2302.13971</source>
          (
          <year>2023</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref37">
        <mixed-citation>
          [49]
          <string-name>
            <given-names>L.</given-names>
            <surname>Zheng</surname>
          </string-name>
          , W.-L. Chiang,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Sheng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Zhuang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Wu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zhuang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E. P.</given-names>
            <surname>Xing</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. E.</given-names>
            <surname>Gonzalez</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Stoica</surname>
          </string-name>
          ,
          <article-title>Judging llm-as-a-judge with mt-bench and chatbot arena</article-title>
          ,
          <year>2023</year>
          . arXiv:
          <volume>2306</volume>
          .
          <fpage>05685</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref38">
        <mixed-citation>
          [50]
          <string-name>
            <surname>T. B. Brown</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          <string-name>
            <surname>Mann</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Ryder</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Subbiah</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Kaplan</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Dhariwal</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Neelakantan</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <string-name>
            <surname>Shyam</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          <string-name>
            <surname>Sastry</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Askell</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Agarwal</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Herbert-Voss</surname>
            , G. Krueger,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Henighan</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Child</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Ramesh</surname>
            ,
            <given-names>D. M.</given-names>
          </string-name>
          <string-name>
            <surname>Ziegler</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Wu</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Winter</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Hesse</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Chen</surname>
            , E. Sigler,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Litwin</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Gray</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          <string-name>
            <surname>Chess</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Clark</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Berner</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>McCandlish</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Radford</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          <string-name>
            <surname>Sutskever</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Amodei</surname>
          </string-name>
          ,
          <article-title>Language models are few-shot learners</article-title>
          ,
          <year>2020</year>
          . arXiv:
          <year>2005</year>
          .14165.
        </mixed-citation>
      </ref>
      <ref id="ref39">
        <mixed-citation>
          [51]
          <string-name>
            <given-names>J.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Hu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Gan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <article-title>Git: A generative image-to-text transformer for vision</article-title>
          and language,
          <year>2022</year>
          . arXiv:
          <volume>2205</volume>
          .
          <fpage>14100</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref40">
        <mixed-citation>
          [52]
          <string-name>
            <given-names>A.</given-names>
            <surname>Kumar</surname>
          </string-name>
          ,
          <article-title>The illustrated image captioning using transformers, ankur3107</article-title>
          .github.io (
          <year>2022</year>
          ). URL: https://ankur3107.github.io/blogs/ the-illustrated
          <article-title>-image-captioning-using-transformers/.</article-title>
        </mixed-citation>
      </ref>
      <ref id="ref41">
        <mixed-citation>
          [53]
          <article-title>Langchain prompt templates</article-title>
          , ???? URL: https://python.langchain.com/docs/modules/ model_io/prompts/prompt_templates/.
        </mixed-citation>
      </ref>
      <ref id="ref42">
        <mixed-citation>
          [54]
          <string-name>
            <given-names>J.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Shen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Dolan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Carin</surname>
          </string-name>
          , W. Chen,
          <article-title>What makes good in-context examples for GPT-3?, in: Proceedings of Deep Learning Inside Out (DeeLIO</article-title>
          <year>2022</year>
          ):
          <article-title>The 3rd Workshop on Knowledge Extraction and Integration for Deep Learning Architectures, Association for Computational Linguistics</article-title>
          , Dublin, Ireland and Online,
          <year>2022</year>
          , pp.
          <fpage>100</fpage>
          -
          <lpage>114</lpage>
          . URL: https://aclanthology.org/
          <year>2022</year>
          .deelio-
          <volume>1</volume>
          .10. doi:
          <volume>10</volume>
          .18653/v1/
          <year>2022</year>
          .deelio-
          <volume>1</volume>
          .
          <fpage>10</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref43">
        <mixed-citation>
          [55]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Lu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Bartolo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Moore</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Riedel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Stenetorp</surname>
          </string-name>
          ,
          <article-title>Fantastically ordered prompts and where to find them: Overcoming few-shot prompt order sensitivity</article-title>
          ,
          <source>in: Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume</source>
          <volume>1</volume>
          :
          <string-name>
            <surname>Long</surname>
            <given-names>Papers)</given-names>
          </string-name>
          ,
          <source>Association for Computational Linguistics</source>
          , Dublin, Ireland,
          <year>2022</year>
          , pp.
          <fpage>8086</fpage>
          -
          <lpage>8098</lpage>
          . URL: https://aclanthology.org/
          <year>2022</year>
          .
          <article-title>acl-long</article-title>
          .
          <volume>556</volume>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2022</year>
          .
          <article-title>acl-long</article-title>
          .
          <volume>556</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref44">
        <mixed-citation>
          [56]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Bang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Cahyawijaya</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Dai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Su</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Wilie</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Lovenia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Ji</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Yu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Chung</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q. V.</given-names>
            <surname>Do</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Xu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Fung</surname>
          </string-name>
          ,
          <article-title>A multitask, multilingual, multimodal evaluation of chatgpt on reasoning, hallucination</article-title>
          , and interactivity,
          <year>2023</year>
          . arXiv:
          <volume>2302</volume>
          .
          <fpage>04023</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref45">
        <mixed-citation>
          [57]
          <string-name>
            <given-names>M.</given-names>
            <surname>Turpin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Michael</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Perez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. R.</given-names>
            <surname>Bowman</surname>
          </string-name>
          ,
          <article-title>Language models don't always say what they think: Unfaithful explanations in chain-of-thought prompting</article-title>
          ,
          <year>2023</year>
          . arXiv:
          <volume>2305</volume>
          .
          <fpage>04388</fpage>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>