Text Generation
Transformers
Safetensors
English
table-understanding
instruction-tuning
replication
tabular-data
conversational
Instructions to use dnaihao/qwen3-8b-tablegpt with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use dnaihao/qwen3-8b-tablegpt with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="dnaihao/qwen3-8b-tablegpt") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("dnaihao/qwen3-8b-tablegpt", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use dnaihao/qwen3-8b-tablegpt with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "dnaihao/qwen3-8b-tablegpt" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "dnaihao/qwen3-8b-tablegpt", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/dnaihao/qwen3-8b-tablegpt
- SGLang
How to use dnaihao/qwen3-8b-tablegpt with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "dnaihao/qwen3-8b-tablegpt" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "dnaihao/qwen3-8b-tablegpt", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "dnaihao/qwen3-8b-tablegpt" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "dnaihao/qwen3-8b-tablegpt", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use dnaihao/qwen3-8b-tablegpt with Docker Model Runner:
docker model run hf.co/dnaihao/qwen3-8b-tablegpt
Add model card with paper / code / dataset references
Browse files
README.md
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model: Qwen/Qwen3-8B
|
| 4 |
+
datasets:
|
| 5 |
+
- dnaihao/Table-Instructs
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
library_name: transformers
|
| 9 |
+
pipeline_tag: text-generation
|
| 10 |
+
tags:
|
| 11 |
+
- table-understanding
|
| 12 |
+
- instruction-tuning
|
| 13 |
+
- replication
|
| 14 |
+
- tabular-data
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
# qwen3-8b-tablegpt
|
| 18 |
+
|
| 19 |
+
Replication of [**TableGPT**](https://arxiv.org/abs/2310.09263), trained from [**Qwen3-8B**](https://huggingface.co/Qwen/Qwen3-8B) on the corresponding instruction-tuning corpus.
|
| 20 |
+
|
| 21 |
+
Released alongside the EACL 2026 Findings paper *"What Really Matters for Table LLMs? A Meta-Evaluation of Model and Data Effects"* (Deng et al., 2026) as an additional artefact extending the paper's experiments — the main 3 base × 4 training-data grid in the paper covers Mistral-v0.3, OLMo, and Phi-3-small at the 7B scale; this model adds another base-model variant trained on the same corpus.
|
| 22 |
+
|
| 23 |
+
- 📄 Paper: [aclanthology.org/2026.findings-eacl.195](https://aclanthology.org/2026.findings-eacl.195/)
|
| 24 |
+
- 💻 Code & eval scripts: [github.com/dnaihao/table-sft-eacl-2026](https://github.com/dnaihao/table-sft-eacl-2026)
|
| 25 |
+
- 🤗 All replicated models: [collection](https://huggingface.co/collections/dnaihao/table-llms)
|
| 26 |
+
|
| 27 |
+
## Training
|
| 28 |
+
|
| 29 |
+
| | |
|
| 30 |
+
|---|---|
|
| 31 |
+
| Base model | [`Qwen/Qwen3-8B`](https://huggingface.co/Qwen/Qwen3-8B) |
|
| 32 |
+
| Training corpus | `tablegpt_large_train.json` from [`dnaihao/Table-Instructs`](https://huggingface.co/datasets/dnaihao/Table-Instructs) |
|
| 33 |
+
| Method | Full SFT via [LLaMA-Factory](https://github.com/hiyouga/LLaMA-Factory) |
|
| 34 |
+
| Learning rate | 5e-7 |
|
| 35 |
+
|
| 36 |
+
Full hyperparameter sweep, ablations, and per-benchmark numbers are reported in the paper.
|
| 37 |
+
|
| 38 |
+
## Evaluation
|
| 39 |
+
|
| 40 |
+
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](https://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.
|
| 41 |
+
|
| 42 |
+
## Usage
|
| 43 |
+
|
| 44 |
+
```python
|
| 45 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 46 |
+
|
| 47 |
+
tokenizer = AutoTokenizer.from_pretrained("dnaihao/qwen3-8b-tablegpt")
|
| 48 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 49 |
+
"dnaihao/qwen3-8b-tablegpt",
|
| 50 |
+
torch_dtype="auto",
|
| 51 |
+
device_map="auto",
|
| 52 |
+
)
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
## License
|
| 56 |
+
|
| 57 |
+
This model inherits the license of its base model ([`Qwen/Qwen3-8B`](https://huggingface.co/Qwen/Qwen3-8B): apache-2.0).
|
| 58 |
+
|
| 59 |
+
## Citation
|
| 60 |
+
|
| 61 |
+
```bibtex
|
| 62 |
+
@inproceedings{deng-etal-2026-really,
|
| 63 |
+
title = "What Really Matters for Table {LLM}s? A Meta-Evaluation of Model and Data Effects",
|
| 64 |
+
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",
|
| 65 |
+
booktitle = "Findings of the Association for Computational Linguistics: EACL 2026",
|
| 66 |
+
year = "2026",
|
| 67 |
+
publisher = "Association for Computational Linguistics",
|
| 68 |
+
url = "https://aclanthology.org/2026.findings-eacl.195/",
|
| 69 |
+
doi = "10.18653/v1/2026.findings-eacl.195"
|
| 70 |
+
}
|
| 71 |
+
```
|