rubentito commited on
Commit
565950b
1 Parent(s): ab7d3cf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -0
README.md CHANGED
@@ -39,6 +39,17 @@ end_pos = torch.argmax(output.end_logits.argmax, dim=-1).item()
39
  pred_answer = context[start_pos:end_pos]
40
  ```
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).
 
39
  pred_answer = context[start_pos:end_pos]
40
  ```
41
 
42
+ ## Metrics
43
+ **Average Normalized Levenshtein Similarity (ANLS)**
44
+
45
+ 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.
46
+ Check [Scene Text Visual Question Answering](https://arxiv.org/abs/1905.13648) for detailed information.
47
+
48
+ **Answer Page Prediction Accuracy (APPA)**
49
+
50
+ 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.
51
+ Check [Hierarchical multimodal transformers for Multi-Page DocVQA](https://arxiv.org/abs/2212.05935) for detailed information.
52
+
53
  ## Model results
54
 
55
  Extended experimentation can be found in Table 2 of [Hierarchical multimodal transformers for Multi-Page DocVQA](https://arxiv.org/pdf/2212.05935.pdf).