惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
G
Google Developers Blog
S
SegmentFault 最新的问题
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
P
Proofpoint News Feed
博客园 - 【当耐特】
MongoDB | Blog
MongoDB | Blog
L
LangChain Blog
F
Fortinet All Blogs
C
Check Point Blog
博客园_首页
I
InfoQ
Jina AI
Jina AI
Blog — PlanetScale
Blog — PlanetScale
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
酷 壳 – CoolShell
酷 壳 – CoolShell
Engineering at Meta
Engineering at Meta
美团技术团队
Vercel News
Vercel News
Apple Machine Learning Research
Apple Machine Learning Research

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
Why Your AI Can Write a Novel but Still Struggles to Coun...
odysseyk · 2026-05-15 · via Hacker News - Newest: "AI"

We are currently living through a bizarre technological paradox. We have built machines capable of passing the bar exam, diagnosing rare medical conditions, and refactoring thousands of lines of legacy code in seconds—yet these same digital titans often trip over the simple task of counting a list of words. If you ask a cutting-edge Large Language Model (LLM) to summarize a thousand-row spreadsheet of survey responses, it might provide a brilliantly insightful thematic analysis while simultaneously hallucinating the actual number of respondents.

This isn't just a minor glitch in the matrix; it is a fundamental window into how modern software architecture has shifted away from the rigid certainty of the past toward a fluid, probabilistic future. Under the hood, the way an AI "counts" is radically different from the way a traditional database or a human brain performs the same task. This gap between our expectations and the model's performance has given rise to a new field of study: the quantitative analysis of hallucination in data-processing tasks.

The Deceptive Simplicity of the Count

In everyday terms, counting feels like the most basic unit of digital labor. We assume that because a computer is, at its core, a glorified calculator, numerical accuracy is a given. However, LLMs are not calculators; they are sophisticated prediction engines. When you provide a model like Gemini 3 Flash or GPT-5.3 Instant with a long list of "Yes/No/Pending" responses and ask for a total, the model doesn't just increment a variable in a loop. It processes the entire text through an attention mechanism, attempting to maintain the "state" of the count across its internal neural pathways.

Through this user lens, the experience is often frustrating. You might notice your AI assistant getting the first few rows right, only to lose its place by row 400. This is what researchers call an internal attention limitation. Paradoxically, the more conversational and "human" a model becomes, the more it seems prone to the same cognitive lapses we experience when trying to count a jar of pennies while someone is shouting random numbers at us.

A New Taxonomy: The Three Faces of Hallucination

Recent exploratory research conducted by the Mirairzu Lab Kobo has identified a fascinating shift in how different models fail at these tasks. It turns out that LLMs don't just "make mistakes"; they exhibit distinct behavioral patterns that mirror different types of software friction.

First, there is the Confabulation Type, exemplified by Gemini 3 Flash. In Baseline tests, Gemini exhibited what researchers term "harmonic hallucination." It might overcount one category while undercounting another, ensuring the final total remains mathematically perfect even if the distribution is a total fabrication. Simultaneously, we see the Avoidance Type in models like GPT-5.3 Instant—where the software simply gives up once the processing load exceeds a certain threshold, returning a polite "I cannot count this many items" message.

Finally, there is the Process-Opaque Type, often seen in Claude Sonnet 4.6. Claude is remarkably accurate, even up to 2,000 items, but its methodology remains a black box. From a developer's standpoint, this is a double-edged sword: you get the right answer, but you have no way of knowing when or why the model will eventually hit its "collapse point."

Hallucination Type Model Example Primary Symptom
Confabulation Gemini 3 Flash Fabricates data to fit a statistically plausible total.
Avoidance GPT-5.3 Instant Refuses or abandons the task when complexity rises.
Process-Opaque Claude 4.6 Highly accurate but provides no audit trail of its logic.

The Failure of Traditional Prompting

Historically, the tech industry's answer to AI inaccuracy has been "Chain-of-Thought" (CoT) prompting—the simple instruction to "think step-by-step." But as software grows more complex, this once-ubiquitous solution is showing signs of technical debt.

In the Mirairzu Lab experiments, applying CoT alone to ChatGPT actually proved counter-productive. When asked to write out its reasoning for a 200-item dataset, the model's accuracy actually dropped. The extra words it had to generate acted as processing noise, distracting the model from the primary task. This aligns with recent industry findings suggesting that for the latest generation of reasoning models, being told how to think can sometimes be as disruptive as a back-seat driver shouting directions to a professional racer.

The External Scaffold: Engineering the KIS Protocol

If simple prompting fails, the industry is shifting toward more robust, proprietary protocols. One such framework is the Knowledge Innovation System (KIS), which acts as an "external scaffold" for the AI. Instead of relying on the model's internal memory, KIS forces the AI to externalize its intermediate steps into a structured log.

Essentially, KIS treats the LLM as a component in a larger machine rather than an all-knowing oracle. By enforcing a protocol like "Level 4 / Logic: Strict," the system separates the counting phase, the verification phase, and the reporting phase. This structural constraint functions like a digital blueprint, ensuring that the model cannot move to the next step until it has verified the previous one.

Behind the screen, this approach solves the "harmonic hallucination" problem. When Gemini was run through the KIS protocol, its accuracy jumped to 100% across the board. The model wasn't allowed to just guess a plausible distribution; it was forced to provide a "log: full" output that served as a verifiable audit trail.

From Accuracy to Auditability: A Paradigm Shift

Zooming out to the industry level, this research highlights a profound shift in how we judge software. For years, the gold standard has been accuracy—did the app give me the right answer? But as we integrate AI into legal, financial, and medical workflows, accuracy alone is no longer enough. We are entering the era of auditability.

As Claude’s performance illustrates, having a model that is "usually right" is a liability if you don't know why it's right. If a human auditor cannot trace the path from the raw data to the final total, the software remains a risk. Protocols like KIS represent the next stage of the web: a move away from the fragmented, "vibes-based" outputs of early chatbots toward a more resilient, transparent architecture where the process is as important as the result.

Reclaiming the Digital Blueprint

Ultimately, our relationship with technology is defined by how much of the "how it works" we are willing to outsource. When we use an LLM to count, summarize, or analyze, we are trading the mechanical certainty of traditional code for the agile intuition of neural networks.

For the ordinary user, the takeaway is pragmatic: don't assume a model's fluency is a proxy for its numeracy. The next time you ask an AI to help you with a data-heavy task, look for the "scaffolding." Does the model show its work? Does it provide a log of its steps? If it doesn't, you are looking at a black box that might be dreaming up the numbers just to keep the conversation flowing.

As we navigate this silent shift in software design, the most important skill we can develop is a "UX eye" for transparency. We should demand tools that don't just give us the answer, but provide the audit trail necessary to prove it. In a world of harmonic hallucinations, the most disruptive feature a piece of software can offer is the simple, humble truth of a verifiable log.

Sources:

  • Hasegawa, H., & Kamogawa (2026). KIS: A Question-Centric Protocol Architecture for Hierarchical AI Thought Control. Zenodo.
  • Huang et al. (2024). A Survey on Hallucination in Large Language Models. ACM TOIS.
  • Meincke & Mollick (2025). The Decreasing Value of Chain of Thought in Prompting. Wharton School Research Paper.
  • Zhao et al. (2025). NumericBench: Exposing Numeracy Gaps in Large Language Models. arXiv pre-print.
  • Mirairzu Lab Kobo (2026). Quantitative Analysis of Hallucination Bias in LLM Counting Tasks.