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

推荐订阅源

Vercel News
Vercel News
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
雷峰网
雷峰网
有赞技术团队
有赞技术团队
罗磊的独立博客
博客园 - 叶小钗
Jina AI
Jina AI
博客园 - 司徒正美
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
Microsoft Security Blog
Microsoft Security Blog
大猫的无限游戏
大猫的无限游戏
量子位
MyScale Blog
MyScale Blog
V
Visual Studio Blog
博客园 - 聂微东
The Cloudflare Blog
Engineering at Meta
Engineering at Meta
小众软件
小众软件
宝玉的分享
宝玉的分享

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
Google AI breakthrough means chatbots use six times less ...
Fiona Jackso · 2026-04-30 · via Hacker News - Newest: "AI"

Google engineers have developed a method to compress artificial intelligence (AI) data so that it requires up to six times less working memory to function.

With the new system, called TurboQuant, AI algorithms could retain the same amount of information and perform equally powerful computations, but with significantly less memory hardware, the company says.

For example, if you ask ChatGPT what the weather will be like tomorrow in your area, it may store words like "weather" and "tomorrow," along with your location and partial guesses, like "It might be rainy," in the KV cache while it generates its response. The larger an AI model's KV cache is, the more information it can keep track of at once and the more powerful it is.

A single sentence uses only a few dozen tokens — the building blocks of AI prompts and output text — but storing hundreds of thousands of tokens in the KV cache for more sophisticated work can require tens of gigabytes of memory. These memory requirements scale linearly depending on the number of users, and ChatGPT is known to receive billions of requests every day.

The compression algorithm will decrease the amount of working memory an AI model needs to perform the same computations. It does so via a process called quantization, which results in values represented by fewer bits.

Although Google has been using quantization on its neural networks for many years, it has typically been applied statically — that is, the compression is done once and doesn't change as the model runs. The difference with TurboQuant is that it reduces the KV cache's memory in real time ‪—‬ a tricky feat given that it must keep the quantized data in the cache accurate and up-to-date while the model generates outputs.

Get the world’s most fascinating discoveries delivered straight to your inbox.

In a statement, Google representatives said TurboQuant "showed great promise for reducing key-value bottlenecks without sacrificing AI model performance" in tests in Meta's Llama 3.1-8B, Google's Gemma and Mistral AI models.

"This has potentially profound implications for all compression-reliant use cases, including and especially in the domains of search and AI," they added.

Is this Google's "DeepSeek moment"?

Google says TurboQuant could reduce the KV cache's size by a factor of at least six times, using two methods: PolarQuant and Quantized Johnson-Lindenstrauss (QJL).

To interpret these methods, it is important to understand that data in the AI's working memory has been turned into vectors — groups of numbers that have a defined size (radius) and direction (angle). Vectors can be mathematically "rotated," meaning they are reexpressed in a different, common coordinate system.

PolarQuant quantization reexpresses AI data from Cartesian coordinates (along X, Y and Z axes) into polar coordinates (angles around a single point). The rotation aligns the angles of the vectors more consistently, thereby allowing them to be compressed into fewer bits with less additional scaling information. The vectors then go through the QJL optimization method, where they are adjusted very slightly to correct any computational errors stemming from the quantization.

In a post on the social media platform X, Matthew Prince, CEO of web security company Cloudflare, called the compression breakthrough "Google's DeepSeek" ‪—‬ a reference to the surprise release of the Chinese firm's AI model that achieved comparable results to leading chatbots at a fraction of the cost.

Google's March 24 unveiling of TurboQuant sent stocks in memory companies like SanDisk, Western Digital and Seagate plummeting. But although the discovery could prove pivotal in improving AI efficiency, it is still at the lab stage and has yet to be widely rolled out in real-world models.

Moreover, it will compress only the working memory used during inference. This is when it is generating a response to a prompt. A model's training typically requires up to four times more memory than that, so the actual impact on memory will be relatively small.

This is what Merrill Lynch banker Vivek Arya explained to concerned investors in a note, according to ZDNet: "(The) 6x improvement in memory efficiency [will] likely [lead] to 6x increase in accuracy (model size) and/or context length (KV cache allocation), rather than 6x decrease in memory."

Google officially unveiled TurboQuant at ICLR 2026, which took place April 23-27 in Rio de Janeiro, and will formally present PolarQuant and QJL at AISTATS 2026 in Tangier, Morocco, in early May.