<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Large Language Models | Sara Candussio</title><link>https://gaoithee.github.io/saracandussio.github.io/tags/large-language-models/</link><atom:link href="https://gaoithee.github.io/saracandussio.github.io/tags/large-language-models/index.xml" rel="self" type="application/rss+xml"/><description>Large Language Models</description><generator>Hugo Blox Builder (https://hugoblox.com)</generator><language>en-us</language><lastBuildDate>Fri, 24 Apr 2026 12:05:00 +0000</lastBuildDate><image><url>https://gaoithee.github.io/saracandussio.github.io/media/icon_hu7729264130191091259.png</url><title>Large Language Models</title><link>https://gaoithee.github.io/saracandussio.github.io/tags/large-language-models/</link></image><item><title>Reading Between the Tokens: Uncovering the Semantic Minima of AI Monologues</title><link>https://gaoithee.github.io/saracandussio.github.io/event/clcg-linguistics-lunch/</link><pubDate>Fri, 24 Apr 2026 12:05:00 +0000</pubDate><guid>https://gaoithee.github.io/saracandussio.github.io/event/clcg-linguistics-lunch/</guid><description>&lt;p>Invited talk at the &lt;a href="https://www.rug.nl/research/clcg/colloquia_discussiongroups_linguisticevents/linguistics_lunch/" target="_blank" rel="noopener">CLCG Linguistics Lunch&lt;/a> at the University of Groningen.&lt;/p>
&lt;p>Chain-of-Thought prompting asks models to reason step by step — but most of what they write is filler. This talk presents work on identifying the semantic minima of AI reasoning: the tiny subset of tokens that actually carry predictive weight, detectable in real time from the model&amp;rsquo;s internal states. Erasing up to 95% of the output leaves a sparse set of words that still perfectly predicts the correct answer.&lt;/p></description></item><item><title>A Dialectic Pipeline for Improving LLM Robustness</title><link>https://gaoithee.github.io/saracandussio.github.io/publication/dialectic-pipeline/</link><pubDate>Wed, 28 Jan 2026 00:00:00 +0000</pubDate><guid>https://gaoithee.github.io/saracandussio.github.io/publication/dialectic-pipeline/</guid><description>&lt;p>Can LLMs improve their accuracy without further training, just through a dialectic way of questioning themselves — as Hegel suggested?&lt;/p>
&lt;p>This was the core question behind my Master&amp;rsquo;s thesis. The short answer: &lt;strong>yes, and by a lot&lt;/strong>.&lt;/p>
&lt;h2 id="the-idea">The Idea&lt;/h2>
&lt;p>Inspired by Hegelian dialectics, the pipeline structures reasoning into three stages:&lt;/p>
&lt;figure>&lt;img src="https://gaoithee.github.io/saracandussio.github.io/saracandussio.github.io/publication/dialectic-pipeline/dialectic.png"
alt="The thesis–antithesis–synthesis pipeline.">&lt;figcaption>
&lt;p>The thesis–antithesis–synthesis pipeline.&lt;/p>
&lt;/figcaption>
&lt;/figure>
&lt;ol>
&lt;li>&lt;strong>Thesis&lt;/strong> — the model produces an initial answer given the question, context, and options.&lt;/li>
&lt;li>&lt;strong>Antithesis&lt;/strong> — the model challenges its own answer, now also seeing the thesis.&lt;/li>
&lt;li>&lt;strong>Synthesis&lt;/strong> — the model produces a final answer, having seen both thesis and antithesis.&lt;/li>
&lt;/ol>
&lt;p>No fine-tuning. No domain-specific verifiers. Just structured self-dialogue.&lt;/p>
&lt;h2 id="results">Results&lt;/h2>
&lt;p>The pipeline was tested on multi-hop QA benchmarks (HotpotQA, WikiHop) across five open-source models under 20B parameters (Phi-mini, Phi-medium, Gemma-2B, Gemma-9B, LLaMA-8B).&lt;/p>
&lt;figure>&lt;img src="https://gaoithee.github.io/saracandussio.github.io/saracandussio.github.io/publication/dialectic-pipeline/results-table.png"
alt="Accuracy improvements across models on HotpotQA.">&lt;figcaption>
&lt;p>Accuracy improvements across models on HotpotQA.&lt;/p>
&lt;/figcaption>
&lt;/figure>
&lt;figure>&lt;img src="https://gaoithee.github.io/saracandussio.github.io/saracandussio.github.io/publication/dialectic-pipeline/results-donut.png"
alt="From 53.4% to 80.7% on HotpotQA with Phi-mini (&amp;#43;27.3%).">&lt;figcaption>
&lt;p>From 53.4% to 80.7% on HotpotQA with Phi-mini (+27.3%).&lt;/p>
&lt;/figcaption>
&lt;/figure>
&lt;p>Improvements of &lt;strong>up to 30%&lt;/strong> on complex multi-hop questions — beating standard Chain-of-Thought prompting.&lt;/p>
&lt;figure>&lt;img src="https://gaoithee.github.io/saracandussio.github.io/saracandussio.github.io/publication/dialectic-pipeline/results-wikihop.png"
alt="CoT vs. pipeline on WikiHop across all models.">&lt;figcaption>
&lt;p>CoT vs. pipeline on WikiHop across all models.&lt;/p>
&lt;/figcaption>
&lt;/figure>
&lt;h2 id="key-takeaways">Key Takeaways&lt;/h2>
&lt;ul>
&lt;li>&lt;strong>Self-debating is the main driver&lt;/strong>: letting models reflect on and contrast their own reasoning significantly boosts performance, especially as question complexity increases.&lt;/li>
&lt;li>&lt;strong>Instruction following matters&lt;/strong>: models that strictly follow instructions (Llama, Phi) benefit more than those that get &amp;ldquo;too creative&amp;rdquo; (Gemma-2).&lt;/li>
&lt;li>&lt;strong>Smart filtering &amp;gt; summarization&lt;/strong>: when dealing with long contexts, filtering for relevant information beats summarization, which can hurt deductive reasoning.&lt;/li>
&lt;li>&lt;strong>Avoid overthinking&lt;/strong>: for simpler tasks, too much deliberation can introduce errors. A touch of &amp;ldquo;impulsivity&amp;rdquo; sometimes helps.&lt;/li>
&lt;/ul>
&lt;figure>&lt;img src="https://gaoithee.github.io/saracandussio.github.io/saracandussio.github.io/publication/dialectic-pipeline/results-context.png"
alt="Original vs. summarized vs. filtered context on WikiHop.">&lt;figcaption>
&lt;p>Original vs. summarized vs. filtered context on WikiHop.&lt;/p>
&lt;/figcaption>
&lt;/figure>
&lt;p>This work also received an &lt;strong>Honorable Mention at the Emanuele Pianta Award (AILC)&lt;/strong> for the best Italian NLP Master&amp;rsquo;s thesis at CLiC-it 2025. 🏆&lt;/p>
&lt;figure>&lt;img src="https://gaoithee.github.io/saracandussio.github.io/saracandussio.github.io/publication/dialectic-pipeline/clicit.png"
alt="CLiC-it 2025, Cagliari.">&lt;figcaption>
&lt;p>CLiC-it 2025, Cagliari.&lt;/p>
&lt;/figcaption>
&lt;/figure>
&lt;p>If you&amp;rsquo;re interested in agentic reasoning, small language models, or multi-hop QA — feel free to reach out!&lt;/p></description></item><item><title>Large Language Models: Potenzialità, Limiti e Sistemi Multi-Agent</title><link>https://gaoithee.github.io/saracandussio.github.io/event/novalia-llm-workshop/</link><pubDate>Mon, 15 Dec 2025 00:00:00 +0000</pubDate><guid>https://gaoithee.github.io/saracandussio.github.io/event/novalia-llm-workshop/</guid><description>&lt;figure>&lt;img src="novalia.png"
alt="Workshop at Novalia, Trieste — December 2025.">&lt;figcaption>
&lt;p>Workshop at Novalia, Trieste — December 2025.&lt;/p>
&lt;/figcaption>
&lt;/figure>
&lt;p>Part of a two-session seminar series on digital transformation, co-organized with &lt;a href="https://www.ip4fvg.it/" target="_blank" rel="noopener">IP4FVG&lt;/a> and the University of Trieste.&lt;/p>
&lt;p>This session covered the inner workings of Large Language Models, multi-agent architectures, and fine-tuning strategies — with an eye toward practical business applications and a frank discussion of current limitations.&lt;/p>
&lt;p>The core message: the challenge isn&amp;rsquo;t just adopting AI, but integrating it strategically to augment rather than replace human potential.&lt;/p></description></item><item><title>Bridging Logic and Learning: Decoding Temporal Logic Embeddings via Transformers</title><link>https://gaoithee.github.io/saracandussio.github.io/publication/bridging-logic-and-learning/</link><pubDate>Thu, 10 Jul 2025 00:00:00 +0000</pubDate><guid>https://gaoithee.github.io/saracandussio.github.io/publication/bridging-logic-and-learning/</guid><description>&lt;p>This work introduces a Transformer-based decoder that inverts embeddings of Signal Temporal Logic (STL) formulae. By constructing a small STL vocabulary, the model can generate valid formulae quickly, generalize across semantic structures, and simplify formulas while preserving their meaning. Our methodology is evaluated across varying formula complexity and applied to requirement mining tasks, performing optimization directly in the semantic space.&lt;/p>
&lt;div class="flex px-4 py-3 mb-6 rounded-md bg-primary-100 dark:bg-primary-900">
&lt;span class="pr-3 pt-1 text-primary-600 dark:text-primary-300">
&lt;svg height="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">&lt;path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m11.25 11.25l.041-.02a.75.75 0 0 1 1.063.852l-.708 2.836a.75.75 0 0 0 1.063.853l.041-.021M21 12a9 9 0 1 1-18 0a9 9 0 0 1 18 0m-9-3.75h.008v.008H12z"/>&lt;/svg>
&lt;/span>
&lt;span class="dark:text-neutral-300">Create your slides in Markdown - click the &lt;em>Slides&lt;/em> button to check out the example.&lt;/span>
&lt;/div>
&lt;p>Add the publication&amp;rsquo;s &lt;strong>full text&lt;/strong> or &lt;strong>supplementary notes&lt;/strong> here. You can use rich formatting such as including &lt;a href="https://docs.hugoblox.com/content/writing-markdown-latex/" target="_blank" rel="noopener">code, math, and images&lt;/a>.&lt;/p>
&lt;p>If you find overlap with your work or interests, I would be glad to connect and explore possible collaborations.&lt;/p></description></item><item><title>OverRef: Studying Over-Refusal in Large Language Models</title><link>https://gaoithee.github.io/saracandussio.github.io/project/overref/</link><pubDate>Wed, 01 Jan 2025 00:00:00 +0000</pubDate><guid>https://gaoithee.github.io/saracandussio.github.io/project/overref/</guid><description>&lt;p>Ongoing project on &lt;strong>over-refusal&lt;/strong> in LLMs: studying when and why models refuse legitimate user queries, with benchmarking and dataset resources.&lt;/p></description></item></channel></rss>