rubentito commited on
Commit
42f0b11
·
1 Parent(s): a4d1301

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +62 -1
README.md CHANGED
@@ -1,3 +1,64 @@
1
  ---
2
- license: gpl
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: gpl-3.0
3
+ tags:
4
+ - DocVQA
5
+ - Document Question Answering
6
+ - Document Visual Question Answering
7
+ datasets:
8
+ - rubentito/mp-docvqa
9
+ language:
10
+ - en
11
  ---
12
+
13
+ # Hi-VT5 base fine-tuned on MP-DocVQA
14
+
15
+ This is Hierarchical Visual T5 (Hi-VT5) base fine-tuned on Multipage DocVQA (MP-DocVQA) dataset.
16
+
17
+
18
+ This model was proposed in [Hierarchical multimodal transformers for Multi-Page DocVQA](https://arxiv.org/pdf/2212.05935.pdf).
19
+ - Results on the MP-DocVQA dataset are reported in Table 2.
20
+ - Training hyperparameters can be found in Table 8 of Appendix D.
21
+
22
+
23
+ <b style="color: #ff0000">Disclaimer</b>: Due to some issues, this model does not achieve as good results as the reported ones in the paper. Please refer to the [project Github] for more details.
24
+
25
+
26
+ ## How to use
27
+
28
+ Hi-VT5 is not integrated into HF yet. Please download the code from [Github repository] and follow the instructions.
29
+
30
+
31
+ ## Metrics
32
+ **Average Normalized Levenshtein Similarity (ANLS)**
33
+
34
+ The standard metric for text-based VQA tasks (ST-VQA and DocVQA). It evaluates the method's reasoning capabilities while smoothly penalizes OCR recognition errors.
35
+ Check [Scene Text Visual Question Answering](https://arxiv.org/abs/1905.13648) for detailed information.
36
+
37
+ **Answer Page Prediction Accuracy (APPA)**
38
+
39
+ In the MP-DocVQA task, the models can provide the index of the page where the information required to answer the question is located. For this subtask accuracy is used to evaluate the predictions: i.e. if the predicted page is correct or not.
40
+ Check [Hierarchical multimodal transformers for Multi-Page DocVQA](https://arxiv.org/abs/2212.05935) for detailed information.
41
+
42
+ ## Model results
43
+
44
+ Extended experimentation can be found in Table 2 of [Hierarchical multimodal transformers for Multi-Page DocVQA](https://arxiv.org/pdf/2212.05935.pdf).
45
+ You can also check the live leaderboard at the [RRC Portal](https://rrc.cvc.uab.es/?ch=17&com=evaluation&task=4).
46
+ | Model | HF name | Parameters | ANLS | APPA |
47
+ |-----------------------------------------------------------------------------------|:--------------------------------------|:-------------:|:-------------:|:---------:|
48
+ | [Bert large](https://huggingface.co/rubentito/bert-large-mpdocvqa) | rubentito/bert-large-mpdocvqa | 334M | 0.4183 | 51.6177 |
49
+ | [Longformer base](https://huggingface.co/rubentito/longformer-base-mpdocvqa) | rubentito/longformer-base-mpdocvqa | 148M | 0.5287 | 71.1696 |
50
+ | [BigBird ITC base](https://huggingface.co/rubentito/bigbird-base-itc-mpdocvqa) | rubentito/bigbird-base-itc-mpdocvqa | 131M | 0.4929 | 67.5433 |
51
+ | [LayoutLMv3 base](https://huggingface.co/rubentito/layoutlmv3-base-mpdocvqa) | rubentito/layoutlmv3-base-mpdocvqa | 125M | 0.4538 | 51.9426 |
52
+ | [T5 base](https://huggingface.co/rubentito/t5-base-mpdocvqa) | rubentito/t5-base-mpdocvqa | 223M | 0.5050 | 0.0000 |
53
+ | [Hi-VT5](https://huggingface.co/rubentito/hivt5-base-mpdocvqa) | rubentito/hivt5-base-mpdocvqa | 316M | 0.6201 | 79.23 |
54
+
55
+ ## Citation Information
56
+
57
+ ```tex
58
+ @article{tito2022hierarchical,
59
+ title={Hierarchical multimodal transformers for Multi-Page DocVQA},
60
+ author={Tito, Rub{\`e}n and Karatzas, Dimosthenis and Valveny, Ernest},
61
+ journal={arXiv preprint arXiv:2212.05935},
62
+ year={2022}
63
+ }
64
+ ```