Views
No views yet
| Base model | mistralai/Mistral-7B-Instruct-v0.3 |
| Training corpus | tablegpt_small_train.json from dnaihao/Table-Instructs |
| Method | Full SFT via LLaMA-Factory |
| Learning rate | 5e-7 |
{model, benchmark} eval scripts and parsed metrics are available at github.com/dnaihao/table-sft-eacl-2026/tree/main/eval/mistral-v0.3-tablegpt-small. 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/mistral-v0.3-tablegpt-small")
4model = AutoModelForCausalLM.from_pretrained(
5 "dnaihao/mistral-v0.3-tablegpt-small",
6 torch_dtype="auto",
7 device_map="auto",
8)mistralai/Mistral-7B-Instruct-v0.3: 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}