Update README.md
Browse files
README.md
CHANGED
@@ -4,12 +4,12 @@ license: llama2
|
|
4 |
|
5 |
# TableLLM: Enabling Tabular Data Manipulation by LLMs in Real Office Usage Scenarios
|
6 |
|
7 |
-
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
|
8 |
|
9 |
-
|
10 |
|
11 |
## Evaluation Results
|
12 |
-
We evaluate the code solution generation ability of
|
13 |
|
14 |
| Model | WikiTQ | TAT-QA | FeTaQA | OTTQA | WikiSQL | Spider | Self-created | Average |
|
15 |
| :------------------- | :----: | :----: | :----: | :-----: | :-----: | :----: | :----------: | :-----: |
|
@@ -82,4 +82,4 @@ The prompt template for direct text answer generation on short tables.
|
|
82 |
### [Solution][INST/]
|
83 |
````
|
84 |
|
85 |
-
For more details about how to use
|
|
|
4 |
|
5 |
# TableLLM: Enabling Tabular Data Manipulation by LLMs in Real Office Usage Scenarios
|
6 |
|
7 |
+
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/KAKA22/TableLLM-7b) and [TableLLM-13B](https://huggingface.co/KAKA22/TableLLM-13b), which are fine-tuned based on CodeLlama-7B and 13B.
|
8 |
|
9 |
+
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.
|
10 |
|
11 |
## Evaluation Results
|
12 |
+
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:
|
13 |
|
14 |
| Model | WikiTQ | TAT-QA | FeTaQA | OTTQA | WikiSQL | Spider | Self-created | Average |
|
15 |
| :------------------- | :----: | :----: | :----: | :-----: | :-----: | :----: | :----------: | :-----: |
|
|
|
82 |
### [Solution][INST/]
|
83 |
````
|
84 |
|
85 |
+
For more details about how to use TableLLM, please refer to our GitHub page: <https://github.com/TableLLM/TableLLM>
|