rubentito commited on
Commit
69a5974
·
1 Parent(s): 85e1768

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -0
README.md CHANGED
@@ -40,6 +40,16 @@ output = self.model.generate(**encoding)
40
  answer = tokenizer.decode(output['sequences'], skip_special_tokens=True)
41
  ```
42
 
 
 
 
 
 
 
 
 
 
 
43
 
44
  ## Model results
45
 
 
40
  answer = tokenizer.decode(output['sequences'], skip_special_tokens=True)
41
  ```
42
 
43
+ ## Metrics
44
+ **Average Normalized Levenshtein Similarity (ANLS)**
45
+
46
+ 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.
47
+ Check [Scene Text Visual Question Answering](https://arxiv.org/abs/1905.13648) for detailed information.
48
+
49
+ **Answer Page Prediction Accuracy (APPA)**
50
+
51
+ 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.
52
+ Check [Hierarchical multimodal transformers for Multi-Page DocVQA](https://arxiv.org/abs/2212.05935) for detailed information.
53
 
54
  ## Model results
55