Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,39 @@
|
|
1 |
---
|
2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
+
datasets:
|
4 |
+
- bsmock/pubtables-1m
|
5 |
+
- bsmock/fintabnet.c
|
6 |
+
tags:
|
7 |
+
- table structure recognition
|
8 |
+
- table extraction
|
9 |
---
|
10 |
+
|
11 |
+
# Model Card for TATR-v1.1-All
|
12 |
+
|
13 |
+
This repo contains the model weights for TATR (Table Transformer) v1.1, trained on the PubTables-1M and FinTabNet.c datasets, using the training details in the paper: ["Aligning benchmark datasets for table structure recognition"](https://arxiv.org/abs/2303.00716).
|
14 |
+
|
15 |
+
These model weights are intended to be used with [the Microsoft implementation of Table Transformer (TATR)](https://github.com/microsoft/table-transformer).
|
16 |
+
|
17 |
+
This model was trained to work best on tightly cropped table images (5 pixels or less).
|
18 |
+
Images with significant padding included around the table were not included in the training, and so the model may not perform well on these at inference.
|
19 |
+
Use a table detection model to detect and tightly crop the table prior to passing to this model.
|
20 |
+
|
21 |
+
Model weights that can be loaded into the Hugging Face implementation of TATR are coming soon.
|
22 |
+
|
23 |
+
FinTabNet.c will be officially released soon.
|
24 |
+
Please see [our GitHub repo](https://github.com/microsoft/table-transformer) for a script to create FinTabNet.c from the [original FinTabNet dataset](https://developer.ibm.com/exchanges/data/all/fintabnet/).
|
25 |
+
|
26 |
+
## Model Details
|
27 |
+
|
28 |
+
### Model Description
|
29 |
+
|
30 |
+
- **Developed by:** Brandon Smock and Rohith Pesala, while at Microsoft
|
31 |
+
- **License:** MIT
|
32 |
+
- **Finetuned from model:** DETR ResNet-18
|
33 |
+
|
34 |
+
### Model Sources
|
35 |
+
|
36 |
+
Please see the following for more details:
|
37 |
+
|
38 |
+
- **Repository:** ["https://github.com/microsoft/table-transformer"](https://github.com/microsoft/table-transformer)
|
39 |
+
- **Paper:** ["Aligning benchmark datasets for table structure recognition"](https://arxiv.org/abs/2303.00716)
|