nielsr HF staff commited on
Commit
d0927d8
1 Parent(s): ff0ea72

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -0
README.md ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Table Transformer (fine-tuned for Table Detection)
2
+
3
+ Table Transformer (DETR) model trained on PubTables1M. It was introduced in the paper [PubTables-1M: Towards Comprehensive Table Extraction From Unstructured Documents](https://arxiv.org/abs/2110.00061) by Smock et al. and first released in [this repository](https://github.com/microsoft/table-transformer).
4
+
5
+ Disclaimer: The team releasing Table Transformer did not write a model card for this model so this model card has been written by the Hugging Face team.
6
+
7
+ ## Model description
8
+
9
+ The Table Transformer is equivalent to DETR, a Transformer-based object detection model. Note that the authors decided to use the "normalize before" setting of DETR, which means that layernorm is applied before self- and cross-attention.
10
+
11
+ ## Usage
12
+
13
+ You can use the raw model for detecting tables in documents. See the [documentation](https://huggingface.co/transformers/main/model_doc/table_transformer.html). for more info.