Downloads · 30 days
17
31% of all-time downloads
dnaihao/phi-3-tablellm
phi-3-tablellm is a text generation model from dnaihao. Use it when you need the model to write or continue text. It is set up for transformers. The card lists the license as mit.
Replication of TableLLM, trained from Phi-3-small-8k-instruct on the corresponding instruction-tuning corpus.
Downloads · 30 days
17
31% of all-time downloads
All-time downloads
54
Public
Parameters
7.4B
14.8 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors14.8 GB · 100%
From the Hugging Face model README
Replication of TableLLM, trained from Phi-3-small-8k-instruct on the corresponding instruction-tuning corpus.
Released as part of the EACL 2026 Findings paper "What Really Matters for Table LLMs? A Meta-Evaluation of Model and Data Effects" (Deng et al., 2026). The paper instruction-tunes three 7B foundation models (Mistral-v0.3, OLMo, Phi-3) on four existing training corpora (TableLlama, TableLLM, TableBench, TableGPT) to disentangle the contributions of base model versus training data, finding that base model choice plays a more dominant role than the training data itself.
| Base model | microsoft/Phi-3-small-8k-instruct |
| Training corpus | tablellm_train.json from dnaihao/Table-Instructs |
| Method | Full SFT via LLaMA-Factory |
| Learning rate | 5e-7 |
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-tablellm. Raw model outputs (generated_predictions.jsonl) are released as the dataset dnaihao/table-sft-eval-predictions.
from transformers import AutoModelForCausalLM, AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained("dnaihao/phi-3-tablellm")
model = AutoModelForCausalLM.from_pretrained(
"dnaihao/phi-3-tablellm",
torch_dtype="auto",
device_map="auto",
)
This model inherits the license of its base model (microsoft/Phi-3-small-8k-instruct: mit).
@inproceedings{deng-etal-2026-really,
title = "What Really Matters for Table {LLM}s? A Meta-Evaluation of Model and Data Effects",
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",
booktitle = "Findings of the Association for Computational Linguistics: EACL 2026",
year = "2026",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2026.findings-eacl.195/",
doi = "10.18653/v1/2026.findings-eacl.195"
}