Chain Of Thought

4 posts

google3 min readCurated summary

Empty shelves or lost keys? Recall is the bottleneck for parametric factuality

Frontier LLMs often fail at factual questions not because they lack the information, but because they cannot reliably retrieve information already encoded in their parameters. The authors’ knowledge-profiling framework finds that models such as Gemini 3 and GPT-5 encode 95–98% of tested facts, yet still fail to directly recall 26–34% of them. This suggests that improving factuality increasingly depends on better knowledge utilization, not simply larger models or more training data. ## Knowledge Profiling - The framework evaluates facts rather than isolated question-answer pairs. - Each fact is assigned one of five profiles: - Encoding failure - Recall failure - Direct recall - Recall with thinking - Inference without encoding - It distinguishes three behaviors: - **Encoding:** reproducing a fact in a pre-training-like context. - **Knowledge:** answering semantically equivalent direct and reverse questions. - **Recall:** retrieving an encoded fact without external cues. - “Thinking” can help models recover facts through intermediate reasoning, multi-hop inference, or educated guesses. ## The WikiProfile Benchmark - WikiProfile contains 2,150 facts extracted from Wikipedia. - Each fact is tested with 10 tasks: - Two encoding tasks - Four knowledge questions - Four multiple-choice recognition questions - Questions include different phrasings and relational directions, such as asking either what entity *B* is associated with or what entity *A* is associated with. - An automated pipeline using Gemini-2.5-Pro generated, refined, searched, and filtered questions, followed by manual validation. - The study evaluated 13 LLMs, with and without thinking. - Eight responses were sampled for every model, fact, and task, producing roughly 4.5 million responses graded by LLM-based autoraters. ## Recall, Not Encoding, Is the Main Bottleneck - Frontier models show near-saturated factual encoding: - Gemini 3 and GPT-5 encode approximately 95–98% of the benchmark’s facts. - They nevertheless fail to directly recall 26–34% of those facts. - Thinking reduces, but does not eliminate, the failures; 11–12% remain inaccessible. - Scaling improves encoding more strongly than recall. - In the Gemma 3 family, larger models have substantially fewer encoding failures, while recall failures remain significant and account for a larger share of residual errors. - The results indicate a shift from knowledge acquisition toward knowledge accessibility and utilization. ## Why Recall Fails - Recall appears sensitive to the conditions under which a fact was learned. - Retrieval becomes more difficult when a question differs from the fact’s training-time context, wording, or ordering. - Rare, long-tail facts illustrate this distinction: - Their encoding rates are relatively close to those of popular facts. - Their recall rates are substantially worse. - This suggests that many rare facts are present in model parameters but are difficult to access, rather than completely absent. The practical implication is that future factuality improvements should target retrieval, post-training, prompting, and inference-time reasoning—not only model scale or broader data coverage.

Read original(opens in new tab)
google3 min readCurated summary

Thinking to recall: How reasoning unlocks parametric knowledge in LLMs

Reasoning can help LLMs recall simple facts even when no genuine multi-step deduction is required. Experiments with Gemini-2.5 and Qwen3 show that reasoning improves access to facts stored in model weights through two mechanisms: extra reasoning tokens provide computational capacity, while related factual statements prime retrieval. However, natural reasoning remains more effective than empty computation, and self-generated intermediate facts can introduce hallucination risks. ## Measuring the Knowledge Boundary - The researchers use **pass@k** to determine whether a correct answer appears among multiple generated attempts, rather than evaluating only the top answer. - They compare reasoning-enabled and reasoning-disabled versions of Gemini-2.5 Flash, Gemini-2.5 Pro, and Qwen3-32B. - Tests use the closed-book **SimpleQA Verified** and **EntityQuestions** datasets, which mainly contain simple, single-hop factual questions. - Reasoning-enabled models recover answers that are nearly unreachable when reasoning is disabled, showing that the benefit is not limited to solving complex problems. ## The Computational Buffer - Generating additional reasoning tokens gives the model more forward passes and therefore more opportunities to update its internal state. - To isolate this effect, the researchers replace the model’s natural reasoning with repeated meaningless text such as “Let me think.” - This dummy reasoning substantially improves factual recall compared with having reasoning completely turned off. - The effect has limits: - Longer dummy traces eventually produce diminishing returns. - Dummy reasoning never performs as well as natural reasoning. - These results indicate that extra computation helps, but the semantic content of the reasoning trace also contributes. ## Factual Priming - Natural reasoning traces often contain related facts rather than logical deductions. - This resembles **spreading activation** in human memory, where recalling one concept makes related concepts easier to access. - The researchers call this mechanism **factual priming**: the model generates nearby facts that create a contextual bridge to the target fact. - When the researchers extract only concrete facts from reasoning traces—removing filler, search plans, and the target answer itself—those facts recover most of reasoning’s benefit. - For example, when asked for Nepal’s 10th king, the model may recall the first nine kings. Listing those related facts primes retrieval of the requested answer. ## The Hallucination Trap - Generative self-retrieval depends on facts produced by the model during reasoning. - Because those intermediate facts may be hallucinated, factual priming can potentially reinforce incorrect information. - The excerpt introduces this risk but does not provide the researchers’ full evaluation or mitigation findings. The practical conclusion is that reasoning traces can function both as a computational workspace and as a semantic memory primer. For factual recall, systems should preserve useful intermediate retrieval while monitoring or verifying generated facts, since the same mechanism that unlocks obscure knowledge can also amplify errors.

Read original(opens in new tab)
kakaoOriginal article

Kakao’s “ (opens in new tab)

Kakao's Kanana-v-4b-hybrid is a multimodal language model designed to transcend simple image-to-text conversion by integrating logical reasoning and self-verification directly into its response process. By employing a hybrid architecture that handles both intuitive dialogue and complex visual reasoning within a single model, it achieves high accuracy and reliability for sophisticated tasks. This approach allows the model to maintain consistency in user experience while excelling in Korean-specific contexts, as evidenced by its record-breaking 92.8 score on the KoNET evaluation. ### Integrated Hybrid Architecture * Consolidates intuitive tasks (like OCR and summarization) and logical tasks (complex reasoning) into a single model to reduce system complexity and maintenance costs. * Eliminates the need for external routing between specialized models, ensuring a consistent tone, response format, and safety policy throughout a single conversation session. * Utilizes a refined training recipe that balances data ratios and visual reasoning training to ensure that improvements in multimodal understanding benefit all types of user queries. ### Visual Reasoning and Self-Reflection * Follows a natural logic flow: synthesizing information from images and text, applying conditions, verifying candidates, and finally concluding the response. * Features a "Reflection" mechanism where the model actively monitors its own thought process to catch "small but fatal" errors, such as calculation mistakes or missed constraints. * Excels in high-stakes visual tasks like receipt auditing, table filtering, and mathematical problem-solving by double-checking intermediate results against original image data. ### Native Korean Logical Processing * Prioritizes "thinking in Korean" to accurately preserve the nuances of complex constraints, such as "except for X" or "only in cases of Y," which are often lost during internal translation. * Develops a native Korean Rationale process to prevent logical drift, ensuring that the internal reasoning steps remain perfectly aligned with the linguistic structure of the user's query. * Addresses the difficulty of processing information scattered throughout Korean-language documents or exam papers by synthesizing data without language-conversion overhead. Kanana-v-4b-hybrid marks a shift toward "verifiable AI" that provides evidence-based answers rather than just plausible text. For applications in education, finance, or complex document processing, this model offers a blueprint for building trust through transparent reasoning and self-correction.

googleOriginal article

Sensible Agent: A framework for unobtrusive interaction with proactive AR agents (opens in new tab)

Sensible Agent is a research prototype designed to move AR agents beyond explicit voice commands toward proactive, context-aware assistance. By leveraging real-time multimodal sensing of a user's environment and physical state, the framework ensures digital help is delivered unobtrusively through the most appropriate interaction modalities. This approach fundamentally reshapes human-computer interaction by anticipating user needs while minimizing cognitive and social disruption. ## Contextual Understanding via Multimodal Parsing The framework begins by analyzing the user's immediate surroundings to establish a baseline for assistance. * A Vision-Language Model (VLM) processes egocentric camera feeds from the AR headset to identify high-level activities and locations. * YAMNet, a pre-trained audio event classifier, monitors environmental noise levels to determine if audio feedback is appropriate. * The system synthesizes these inputs into a parsed context that accounts for situational impairments, such as when a user’s hands are occupied. ## Reasoning with Proactive Query Generation Once the context is established, the system determines the specific type of assistance required through a sophisticated reasoning process. * The framework uses chain-of-thought (CoT) reasoning to decompose complex problems into intermediate logical steps. * Few-shot learning, guided by examples from data collection studies, helps the model decide between actions like providing translations or displaying a grocery list. * The generator outputs a structured suggestion that includes the specific action, the query format (e.g., binary choice or icons), and the presentation modality (visual, audio, or both). ## Dynamic Modality and Interaction Management The final stage of the framework manages how the agent communicates with the user and how the user can respond without breaking their current flow. * The prototype, built on Android XR and WebXR, utilizes a UI Manager to render visual panels or generate text-to-speech (TTS) prompts based on the agent's decision. * An Input Modality Manager activates the most discreet response methods available, such as head gestures (nods), hand gestures (thumbs up), or gaze tracking. * This adaptive selection ensures that if a user is in a noisy room or a social setting, the agent can switch from verbal interaction to subtle visual cues and gesture-based confirmations. By prioritizing social awareness and context-sensitivity, Sensible Agent provides a blueprint for AR systems that feel like helpful companions rather than intrusive tools. Implementing such frameworks is essential for making proactive digital assistants practical and acceptable for long-term, everyday use in public and private spaces.