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.
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.
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...
Look at the white text on white background in Appendix F. Pretty funny.
Unsure if it's LLMs that fail at tabular data or its just that tree boosting are spectacular at that task.
One step further are those who want to point an llm directly at the data warehouse to get the data needed to run predictions
My money is on they used agentic AI coding tools to help set up all the metrics/experiments with traditional models.
Just have 2 LLMs debate whether tabs or spaces are the superior choice
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.
>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.
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.