SShortSingh.
Back to feed

Study Finds High Dimensionality, Not Formatting, Is Why LLMs Fail at Tabular Prediction

0
·1 views

A new research paper investigates why large language models underperform on tabular prediction tasks compared to classical machine learning methods like gradient-boosted trees. Testing nine methods across 31 benchmark datasets, the authors found that LLM accuracy degrades as the number of input features grows, while traditional baselines remain stable or improve. The study ruled out several common explanations — including poor CSV serialization, bad numeric tokenization, and prompt length — as primary causes of this performance gap. Instead, the researchers identified input dimensionality as the central failure mode, arguing that LLMs struggle to detect useful patterns when many weakly related features accumulate. The findings suggest that reformatting data or tweaking prompts is unlikely to resolve the core limitation in high-dimensional tabular learning scenarios.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Enola AI Tool Uses Typed Fact Model to Extract Reliable Architectural Insights

Enola is an AI-assisted architectural analysis tool being developed to extract structured facts from source code before any AI reasoning begins. Rather than treating all relationships as generic graph edges, Enola uses a typed fact model that distinguishes between function calls, imports, route registrations, and type references. The system separates raw parsing from architectural extraction, so that framework-specific patterns — such as composed router paths in Go or Spring annotations — are correctly interpreted into meaningful facts. Repositories serve as independently addressable extraction scopes, meaning Enola can reason about a codebase even without loading its dependencies. Because architectural boundaries rarely align with source ownership boundaries, Enola assigns each entity a scoped identity that includes context like language, qualified name, and source revision.

0
ProgrammingDEV Community ·

Researchers Test LLMs to Identify Processors in Bare-Metal Binaries via Ghidra

A reverse engineering project is exploring automated methods to identify the processor architecture of undocumented bare-metal binaries, with the second strategy combining Ghidra disassembly across 177 architectures and LLM-based analysis. Test binaries were compiled from a single C source file for roughly 30 processors in both raw and ELF formats, with three firmware samples selected to cover supported, unsupported, and misformatted scenarios. Five local LLMs — including qwen2.5-coder, qwen3-coder:30b, gemma4:26b, dolphinMistral24b, and dolphin3-cyber — were benchmarked using an identical system prompt and a strict JSON response schema. For the first firmware, qwen2.5-coder flagged 69 candidate processors and qwen3-coder:30b narrowed it to 35, both correctly including the true target, while gemma4:26b largely failed due to severe formatting errors. The findings highlight significant variation in LLM reliability for structured reverse engineering tasks, informing which models are viable for building a scalable disassembly identification pipeline.

0
ProgrammingHacker News ·

Stephen Wolfram Mourns Death of Wife Elise Cawley After 36 Years Together

Stephen Wolfram, founder of Wolfram Research and creator of Mathematica, has announced the death of his wife, Elise Cawley, who lived from 1961 to 2026. Wolfram shared the news through a personal tribute published on his official writings blog in August 2026. The memorial post reflects on 36 years of marriage between the two. Wolfram expressed gratitude for the time they shared together in his written remembrance.

Study Finds High Dimensionality, Not Formatting, Is Why LLMs Fail at Tabular Prediction · ShortSingh