Replication of
TableBenchLLM, trained from
OLMo-7B-Instruct on the corresponding instruction-tuning corpus.
Full hyperparameter sweep, ablations, and per-benchmark numbers are reported in the paper.
Per-
{model, benchmark} eval scripts and parsed metrics are available at
github.com/dnaihao/table-sft-eacl-2026/tree/main/eval/olmo-tablebench. Raw model outputs (
generated_predictions.jsonl) are released as the dataset
dnaihao/table-sft-eval-predictions.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3tokenizer = AutoTokenizer.from_pretrained("dnaihao/olmo-tablebench")
4model = AutoModelForCausalLM.from_pretrained(
5 "dnaihao/olmo-tablebench",
6 torch_dtype="auto",
7 device_map="auto",
8)
This model inherits the license of its base model (
allenai/OLMo-7B-Instruct: apache-2.0).
1@inproceedings{deng-etal-2026-really,
2 title = "What Really Matters for Table {LLM}s? A Meta-Evaluation of Model and Data Effects",
3 author = "Deng, Naihao and Zhang, Sheng and Zhu, Henghui and Chang, Shuaichen and Zhang, Jiani and Li, Alexander Hanbo and Hang, Chung-Wei and Kobayashi, Hideo and Hu, Yiqun and Ng, Patrick",
4 booktitle = "Findings of the Association for Computational Linguistics: EACL 2026",
5 year = "2026",
6 publisher = "Association for Computational Linguistics",
7 url = "https://aclanthology.org/2026.findings-eacl.195/",
8 doi = "10.18653/v1/2026.findings-eacl.195"
9}