Replication of
TableLlama, trained from
Phi-3-small-8k-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/phi-3-tablellama. 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/phi-3-tablellama")
4model = AutoModelForCausalLM.from_pretrained(
5 "dnaihao/phi-3-tablellama",
6 torch_dtype="auto",
7 device_map="auto",
8)
This model inherits the license of its base model (
microsoft/Phi-3-small-8k-instruct: mit).
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}