Daily Tech Briefing
AI 科技速览
每天 5 分钟内学习 AI。获取最新的人工智能新闻,理解其重要性,并学习如何将其应用于您的工作。
arXiv Machine Learning · 2026/8/3 15:52:51
Why Large Language Models Fail at Tabular Prediction
AI 中文解读
核心亮点:这项研究终于揭开了AI大模型的一大“短板”——在文本和图像上表现得无所不能,可面对我们日常工作中常见的表格数据,它们竟然会随着数据变复杂而越来越不靠谱。
通俗解读:你可以把大模型想象成一个靠“看视频”学会做题的学霸。你给它一张表格,就像把数字写在一行行文本里给它看。研究发现,它并不是因为看不懂数字,也不是因为格式乱,而是因为表格维度越高、列数越多,它就越“晕”。实验中,把表格压缩成2维时,它还能像老办法一样猜个八九不离十;但一旦维度增加,它就越猜越离谱,而传统算法却稳如泰山。
实际影响:这个发现对普通人很有参考价值。比如你用AI分析股票走势、健康指标或多维度销售数据,数据列一多,AI的预测可能还不如老式的统计工具。不过,这也给了那些专注表格预测的专用AI机会,未来可能会有更可靠的“表格专家”来弥补大模型的不足,让我们的数据应用更安心、更高效。
Large language models (LLMs) have become the default tool for a remarkable range of tasks, yet they have had conspicuously little success at one of the most common machine learning workloads: predictive analytics over tabular data. This gap is the founding premise of the fast-growing field of tabular foundation models, but the question of why generic LLMs fail has remained open. We study a frontier LLM in its purest inference regime - a single generation pass over a prompt containing the full training and test data, with no tools, no agentic scaffolding, and no fine-tuning - and systematically evaluate five hypotheses for the failure: (a) an inability to handle noisy or non-linearly-separable data; (b) the linearised CSV format obscuring column structure; (c) the tokenisation of numeric values; (d) the number of test points classified per query; and (e) the dimensionality of the input. Controlled experiments falsify (a)-(d). Dimensionality, in contrast, is decisive: sweeping random linear projections of thirty-one benchmark datasets, the LLM is the only method among nine whose accuracy decreases as dimensionality grows, while every classical baseline stays flat or improves. A behavioural comparison against 252 configured classical models finds that in two dimensions the LLM predicts like a local, distance-based method (up to 91.6% grid agreement), but in higher dimensions no classical model - even when augmented with tuned, dimension-dependent noise - reproduces its predictions. We do not claim to have identified the internal mechanism; our results show, more modestly, that the LLM's capability dissolves with dimension in a way no noise-corrupted classical learner mimics - which explains why LLMs, so capable elsewhere, keep losing to fifty-year-old baselines on tables, while leaving the mechanism of the prediction as an open question.
分享
阅读原文 ↗