Instructions to use QuantFactory/TableLLM-13b-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use QuantFactory/TableLLM-13b-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("table-question-answering", model="QuantFactory/TableLLM-13b-GGUF")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("QuantFactory/TableLLM-13b-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use QuantFactory/TableLLM-13b-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf QuantFactory/TableLLM-13b-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf QuantFactory/TableLLM-13b-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf QuantFactory/TableLLM-13b-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf QuantFactory/TableLLM-13b-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf QuantFactory/TableLLM-13b-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf QuantFactory/TableLLM-13b-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf QuantFactory/TableLLM-13b-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf QuantFactory/TableLLM-13b-GGUF:Q4_K_M
Use Docker
docker model run hf.co/QuantFactory/TableLLM-13b-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use QuantFactory/TableLLM-13b-GGUF with Ollama:
ollama run hf.co/QuantFactory/TableLLM-13b-GGUF:Q4_K_M
- Unsloth Desktop
- Docker Model Runner
How to use QuantFactory/TableLLM-13b-GGUF with Docker Model Runner:
docker model run hf.co/QuantFactory/TableLLM-13b-GGUF:Q4_K_M
- Lemonade
How to use QuantFactory/TableLLM-13b-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull QuantFactory/TableLLM-13b-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.TableLLM-13b-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,124 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
---
|
| 3 |
+
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
base_model: TableLLM-13b
|
| 6 |
+
library_name: transformers
|
| 7 |
+
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
[](https://hf.co/QuantFactory)
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
# QuantFactory/TableLLM-13b-GGUF
|
| 14 |
+
This is quantized version of [RUCKBReasoning/TableLLM-13b](https://huggingface.co/RUCKBReasoning/TableLLM-13b) created using llama.cpp
|
| 15 |
+
|
| 16 |
+
# Original Model Card
|
| 17 |
+
|
| 18 |
+
---
|
| 19 |
+
|
| 20 |
+
license: llama2
|
| 21 |
+
datasets:
|
| 22 |
+
- RUCKBReasoning/TableLLM-SFT
|
| 23 |
+
language:
|
| 24 |
+
- en
|
| 25 |
+
tags:
|
| 26 |
+
- Table
|
| 27 |
+
- QA
|
| 28 |
+
- Code
|
| 29 |
+
|
| 30 |
+
---
|
| 31 |
+
|
| 32 |
+
[](https://hf.co/QuantFactory)
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
# QuantFactory/TableLLM-13b-GGUF
|
| 36 |
+
This is quantized version of [RUCKBReasoning/TableLLM-13b](https://huggingface.co/RUCKBReasoning/TableLLM-13b) created using llama.cpp
|
| 37 |
+
|
| 38 |
+
# Original Model Card
|
| 39 |
+
|
| 40 |
+
|
| 41 |
+
# TableLLM: Enabling Tabular Data Manipulation by LLMs in Real Office Usage Scenarios
|
| 42 |
+
|
| 43 |
+
| **[Paper](https://arxiv.org/abs/2403.19318)** | **[Training set](https://huggingface.co/datasets/RUCKBReasoning/TableLLM-SFT)** | **[Github](https://github.com/RUCKBReasoning/TableLLM)** | **[Homepage](https://tablellm.github.io/)** |
|
| 44 |
+
|
| 45 |
+
We present **TableLLM**, a powerful large language model designed to handle tabular data manipulation tasks efficiently, whether they are embedded in spreadsheets or documents, meeting the demands of real office scenarios. The TableLLM series encompasses two distinct scales: [TableLLM-7B](https://huggingface.co/RUCKBReasoning/TableLLM-7b) and [TableLLM-13B](https://huggingface.co/RUCKBReasoning/TableLLM-13b), which are fine-tuned based on [CodeLlama-7b-Instruct-hf](https://huggingface.co/codellama/CodeLlama-7b-Instruct-hf) and [CodeLlama-13b-Instruct-hf](https://huggingface.co/codellama/CodeLlama-13b-Instruct-hf).
|
| 46 |
+
|
| 47 |
+
TableLLM generates either a code solution or a direct text answer to handle tabular data manipulation tasks based on different scenarios. Code generation is used for handling spreadsheet-embedded tabular data, which often involves the insert, delete, update, query, merge, and plot operations of tables. Text generation is used for handling document-embedded tabular data, which often involves the query operation of short tables.
|
| 48 |
+
|
| 49 |
+
## Evaluation Results
|
| 50 |
+
We evaluate the code solution generation ability of TableLLM on three benchmarks: WikiSQL, Spider and Self-created table operation benchmark. The text answer generation ability is tested on four benchmarks: WikiTableQuestion (WikiTQ), TAT-QA, FeTaQA and OTTQA. The evaluation result is shown below:
|
| 51 |
+
|
| 52 |
+
| Model | WikiTQ | TAT-QA | FeTaQA | OTTQA | WikiSQL | Spider | Self-created | Average |
|
| 53 |
+
| :------------------- | :----: | :----: | :----: | :-----: | :-----: | :----: | :----------: | :-----: |
|
| 54 |
+
| TaPEX | 38.5 | β | β | β | 83.9 | 15.0 | / | 45.8 |
|
| 55 |
+
| TaPas | 31.5 | β | β | β | 74.2 | 23.1 | / | 42.92 |
|
| 56 |
+
| TableLlama | 24.0 | 22.2 | 20.5 | 6.4 | 43.7 | 9.0 | / | 20.7 |
|
| 57 |
+
| GPT3.5 | 58.5 |<ins>72.1</ins>| 71.2 | 60.8 | 81.7 | 67.4 | 77.1 | 69.8 |
|
| 58 |
+
| GPT4 |**74.1**|**77.1**|**78.4**|**69.5** | 84.0 | 69.5 | 77.8 | **75.8**|
|
| 59 |
+
| Llama2-Chat (13B) | 48.8 | 49.6 | 67.7 | 61.5 | β | β | β | 56.9 |
|
| 60 |
+
| CodeLlama (13B) | 43.4 | 47.2 | 57.2 | 49.7 | 38.3 | 21.9 | 47.6 | 43.6 |
|
| 61 |
+
| Deepseek-Coder (33B) | 6.5 | 11.0 | 7.1 | 7.4 | 72.5 | 58.4 | 73.9 | 33.8 |
|
| 62 |
+
| StructGPT (GPT3.5) | 52.5 | 27.5 | 11.8 | 14.0 | 67.8 |**84.8**| / | 48.9 |
|
| 63 |
+
| Binder (GPT3.5) | 61.6 | 12.8 | 6.8 | 5.1 | 78.6 | 52.6 | / | 42.5 |
|
| 64 |
+
| DATER (GPT3.5) | 53.4 | 28.4 | 18.3 | 13.0 | 58.2 | 26.5 | / | 37.0 |
|
| 65 |
+
| TableLLM-7B (Ours) | 58.8 | 66.9 | 72.6 |<ins>63.1</ins>|<ins>86.6</ins>| 82.6 |<ins>78.8</ins>| 72.8 |
|
| 66 |
+
| TableLLM-13B (Ours) |<ins>62.4</ins>| 68.2 |<ins>74.5</ins>| 62.5 | **90.7**|<ins>83.4</ins>| **80.8** |<ins>74.7</ins>|
|
| 67 |
+
|
| 68 |
+
## Prompt Template
|
| 69 |
+
The prompts we used for generating code solutions and text answers are introduced below.
|
| 70 |
+
|
| 71 |
+
### Code Solution
|
| 72 |
+
The prompt template for the insert, delete, update, query, and plot operations on a single table.
|
| 73 |
+
```
|
| 74 |
+
[INST]Below are the first few lines of a CSV file. You need to write a Python program to solve the provided question.
|
| 75 |
+
|
| 76 |
+
Header and first few lines of CSV file:
|
| 77 |
+
{csv_data}
|
| 78 |
+
|
| 79 |
+
Question: {question}[/INST]
|
| 80 |
+
```
|
| 81 |
+
|
| 82 |
+
The prompt template for the merge operation on two tables.
|
| 83 |
+
```
|
| 84 |
+
[INST]Below are the first few lines two CSV file. You need to write a Python program to solve the provided question.
|
| 85 |
+
|
| 86 |
+
Header and first few lines of CSV file 1:
|
| 87 |
+
{csv_data1}
|
| 88 |
+
|
| 89 |
+
Header and first few lines of CSV file 2:
|
| 90 |
+
{csv_data2}
|
| 91 |
+
|
| 92 |
+
Question: {question}[/INST]
|
| 93 |
+
```
|
| 94 |
+
|
| 95 |
+
The csv_data field is filled with the first few lines of your provided table file. Below is an example:
|
| 96 |
+
```
|
| 97 |
+
Sex,Length,Diameter,Height,Whole weight,Shucked weight,Viscera weight,Shell weight,Rings
|
| 98 |
+
M,0.455,0.365,0.095,0.514,0.2245,0.101,0.15,15
|
| 99 |
+
M,0.35,0.265,0.09,0.2255,0.0995,0.0485,0.07,7
|
| 100 |
+
F,0.53,0.42,0.135,0.677,0.2565,0.1415,0.21,9
|
| 101 |
+
M,0.44,0.365,0.125,0.516,0.2155,0.114,0.155,10
|
| 102 |
+
I,0.33,0.255,0.08,0.205,0.0895,0.0395,0.055,7
|
| 103 |
+
```
|
| 104 |
+
|
| 105 |
+
### Text Answer
|
| 106 |
+
The prompt template for direct text answer generation on short tables.
|
| 107 |
+
````
|
| 108 |
+
[INST]Offer a thorough and accurate solution that directly addresses the Question outlined in the [Question].
|
| 109 |
+
### [Table Text]
|
| 110 |
+
{table_descriptions}
|
| 111 |
+
|
| 112 |
+
### [Table]
|
| 113 |
+
```
|
| 114 |
+
{table_in_csv}
|
| 115 |
+
```
|
| 116 |
+
|
| 117 |
+
### [Question]
|
| 118 |
+
{question}
|
| 119 |
+
|
| 120 |
+
### [Solution][INST/]
|
| 121 |
+
````
|
| 122 |
+
|
| 123 |
+
For more details about how to use TableLLM, please refer to our GitHub page: <https://github.com/TableLLM/TableLLM>
|
| 124 |
+
|