Kyle Li
commited on
Commit
·
5e4342c
1
Parent(s):
a555f47
model card
Browse files
README.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# TableSense Dataset
|
| 2 |
## Overview
|
| 3 |
This dataset is derived from the tablesense [paper](https://arxiv.org/abs/2106.13500) and [github repo](https://github.com/microsoft/TableSense).
|
|
@@ -34,7 +48,7 @@ We downloaded the three datasets from the link above, converted them to xlsx usi
|
|
| 34 |
```
|
| 35 |
from datasets import load_dataset
|
| 36 |
|
| 37 |
-
dataset = load_dataset("kl3269/
|
| 38 |
|
| 39 |
example = dataset[0]
|
| 40 |
print(example)
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
pretty_name: "TableSense Dataset"
|
| 5 |
+
tags:
|
| 6 |
+
- tabular
|
| 7 |
+
- spreadsheet
|
| 8 |
+
- table-detection
|
| 9 |
+
- excel
|
| 10 |
+
license: mit
|
| 11 |
+
size_categories:
|
| 12 |
+
- 1K<n<10K
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
# TableSense Dataset
|
| 16 |
## Overview
|
| 17 |
This dataset is derived from the tablesense [paper](https://arxiv.org/abs/2106.13500) and [github repo](https://github.com/microsoft/TableSense).
|
|
|
|
| 48 |
```
|
| 49 |
from datasets import load_dataset
|
| 50 |
|
| 51 |
+
dataset = load_dataset("kl3269/tablesense",split="all", trust_remote_code=True)
|
| 52 |
|
| 53 |
example = dataset[0]
|
| 54 |
print(example)
|