Yiheng Xu commited on
Commit
4678df1
1 Parent(s): 74cf193

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # LayoutLM
2
+ **Multimodal (text + layout/format + image) pre-training for document AI**
3
+
4
+ [Microsoft Document AI](https://www.microsoft.com/en-us/research/project/document-ai/) | [GitHub](https://aka.ms/layoutlm)
5
+
6
+ ## Model description
7
+
8
+ LayoutLM is a simple but effective pre-training method of text and layout for document image understanding and information extraction tasks, such as form understanding and receipt understanding. LayoutLM archives the SOTA results on multiple datasets. For more details, please refer to our paper:
9
+
10
+ [LayoutLM: Pre-training of Text and Layout for Document Image Understanding](https://arxiv.org/abs/1912.13318)
11
+ Yiheng Xu, Minghao Li, Lei Cui, Shaohan Huang, Furu Wei, Ming Zhou, [KDD 2020](https://www.kdd.org/kdd2020/accepted-papers)
12
+
13
+ ## Training data
14
+
15
+ We pre-train LayoutLM on IIT-CDIP Test Collection 1.0\* dataset with two settings.
16
+
17
+ * LayoutLM-Base, Uncased (11M documents, 2 epochs): 12-layer, 768-hidden, 12-heads, 113M parameters **(This Model)**
18
+ * LayoutLM-Large, Uncased (11M documents, 2 epochs): 24-layer, 1024-hidden, 16-heads, 343M parameters
19
+
20
+ ## Citation
21
+
22
+ If you find LayoutLM useful in your research, please cite the following paper:
23
+
24
+ ``` latex
25
+ @misc{xu2019layoutlm,
26
+ title={LayoutLM: Pre-training of Text and Layout for Document Image Understanding},
27
+ author={Yiheng Xu and Minghao Li and Lei Cui and Shaohan Huang and Furu Wei and Ming Zhou},
28
+ year={2019},
29
+ eprint={1912.13318},
30
+ archivePrefix={arXiv},
31
+ primaryClass={cs.CL}
32
+ }
33
+ ```