Replication of
TableBenchLLM, trained from
Qwen3-8B on the corresponding instruction-tuning corpus.
Full hyperparameter sweep, ablations, and per-benchmark numbers are reported in the paper.
This model was not part of the per-benchmark evaluation reported in the paper; it is released as an additional artefact for the community. See
github.com/dnaihao/table-sft-eacl-2026 for the eval setup we used on the paper's main models — the same scripts can be adapted for this checkpoint.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3tokenizer = AutoTokenizer.from_pretrained("dnaihao/qwen3-8b-tablebench")
4model = AutoModelForCausalLM.from_pretrained(
5 "dnaihao/qwen3-8b-tablebench",
6 torch_dtype="auto",
7 device_map="auto",
8)
This model inherits the license of its base model (
Qwen/Qwen3-8B: 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}