logoalt Hacker News

Why Large Language Models Fail at Tabular Prediction

96 pointsby sbulaevtoday at 10:07 AM32 commentsview on HN

Comments

_joeltoday at 1:40 PM

The first thing I'd do if working with an LLM on tabular data is to ask what the best tool would be to work with that data and build up a proper harness to work with the data sensibly. Rawdogging LLM isn't the tool for forecasting like this, as they found.

show 1 reply
IneffablePigeontoday at 8:35 PM

Watching an LLM interact with the Honeycomb MCP is interesting. When returning a query result it returns not only the tabular data but also an ascii art chart. Presumably they have tested this and it improves the LLM’s ability to interpret the data.

gw32today at 7:53 PM

Interesting work.

I'm surprised that hypothesis 2 (that CSV serialization format mangles table columns) was falsified. Back in the gpt-3.5-turbo and gpt-4o era, I did needle-haystack tests and found that table format mattered a lot (csv, tsv, markdown). Most models "could not read vertically" for csv (they were horrible), but they could for markdown. I concluded that serialization format or tokenization played a major role.

Nowadays, LLM performance on csvs is much improved (I'm guessing after being explicitly trained on CSV question-answering.) But I still carry the impression that LLMs read columns only by "memorizing" column positions in a format-dependent manner. Maybe this impression is out of date.

toughtoday at 4:43 PM

Google's TabFM [1] (and its previous TimesFM) seem the best approach so far on this area

1. https://research.google/blog/introducing-tabfm-a-zero-shot-f...

show 1 reply
rustyconovertoday at 2:56 PM

Look at the white text on white background in Appendix F. Pretty funny.

show 2 replies
ismailmajtoday at 12:50 PM

Unsure if it's LLMs that fail at tabular data or its just that tree boosting are spectacular at that task.

show 3 replies
pjottoday at 3:04 PM

One step further are those who want to point an llm directly at the data warehouse to get the data needed to run predictions

show 1 reply
apwheeletoday at 4:33 PM

My money is on they used agentic AI coding tools to help set up all the metrics/experiments with traditional models.

cyanregimenttoday at 11:59 AM

Just have 2 LLMs debate whether tabs or spaces are the superior choice

show 1 reply
WhitneyLandtoday at 2:27 PM

Nowhere in the paper do they mention the reasoning level or budget used for the experiments?

You’ve got to be kidding me. That one variable could make a huge difference in the results. I can’t understand why they would leave that out.

heaney-555today at 1:27 PM

>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

Sigh. So this is somewhat interesting niche academic research but utterly irrelevant to real-world use cases.

show 3 replies