rubentito / longformer-base-mpdocvqa

huggingface.co
Total runs: 10
24-hour runs: 0
7-day runs: 1
30-day runs: 8
Model's Last Updated: November 20 2023
question-answering

Introduction of longformer-base-mpdocvqa

Model Details of longformer-base-mpdocvqa

Longformer base fine-tuned on MP-DocVQA

This is Longformer-base trained on SQuAD v1 from Valhalla hub and fine-tuned on Multipage DocVQA (MP-DocVQA) dataset.

This model was used as a baseline in Hierarchical multimodal transformers for Multi-Page DocVQA .

  • Results on the MP-DocVQA dataset are reported in Table 2.
  • Training hyperparameters can be found in Table 8 of Appendix D.
How to use
Inference

How to use this model to perform inference on a sample question and context in PyTorch:

from transformers import LongformerTokenizerFast, LongformerForQuestionAnswering

tokenizer = LongformerTokenizerFast.from_pretrained("rubentito/longformer-base-mpdocvqa")
model = LongformerForQuestionAnswering.from_pretrained("rubentito/longformer-base-mpdocvqa")

text = "Huggingface has democratized NLP. Huge thanks to Huggingface for this."
question = "What has Huggingface done?"

encoding = tokenizer(question, text, return_tensors="pt")
output = model(encoding["input_ids"], attention_mask=encoding["attention_mask"])

start_pos = torch.argmax(output.start_logits, dim=-1).item()
end_pos = torch.argmax(output.end_logits, dim=-1).item()

context_tokens = tokenizer.convert_ids_to_tokens(encoding["input_ids"][0].tolist())
answer_tokens = context_tokens[start_pos: end_pos + 1]
pred_answer = tokenizer.decode(tokenizer.convert_tokens_to_ids(answer_tokens))
Metrics

Average Normalized Levenshtein Similarity (ANLS)

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. Check Scene Text Visual Question Answering for detailed information.

Answer Page Prediction Accuracy (APPA)

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. Check Hierarchical multimodal transformers for Multi-Page DocVQA for detailed information.

Model results

Extended experimentation can be found in Table 2 of Hierarchical multimodal transformers for Multi-Page DocVQA . You can also check the live leaderboard at the RRC Portal .

Model HF name Parameters ANLS APPA
Bert large rubentito/bert-large-mpdocvqa 334M 0.4183 51.6177
Longformer base rubentito/longformer-base-mpdocvqa 148M 0.5287 71.1696
BigBird ITC base rubentito/bigbird-base-itc-mpdocvqa 131M 0.4929 67.5433
LayoutLMv3 base rubentito/layoutlmv3-base-mpdocvqa 125M 0.4538 51.9426
T5 base rubentito/t5-base-mpdocvqa 223M 0.5050 0.0000
Hi-VT5 rubentito/hivt5-base-mpdocvqa 316M 0.6201 79.23
Citation Information
@article{tito2022hierarchical,
  title={Hierarchical multimodal transformers for Multi-Page DocVQA},
  author={Tito, Rub{\`e}n and Karatzas, Dimosthenis and Valveny, Ernest},
  journal={arXiv preprint arXiv:2212.05935},
  year={2022}
}

Runs of rubentito longformer-base-mpdocvqa on huggingface.co

10
Total runs
0
24-hour runs
0
3-day runs
1
7-day runs
8
30-day runs

More Information About longformer-base-mpdocvqa huggingface.co Model

More longformer-base-mpdocvqa license Visit here:

https://choosealicense.com/licenses/gpl-3.0

longformer-base-mpdocvqa huggingface.co

longformer-base-mpdocvqa huggingface.co is an AI model on huggingface.co that provides longformer-base-mpdocvqa's model effect (), which can be used instantly with this rubentito longformer-base-mpdocvqa model. huggingface.co supports a free trial of the longformer-base-mpdocvqa model, and also provides paid use of the longformer-base-mpdocvqa. Support call longformer-base-mpdocvqa model through api, including Node.js, Python, http.

longformer-base-mpdocvqa huggingface.co Url

https://huggingface.co/rubentito/longformer-base-mpdocvqa

rubentito longformer-base-mpdocvqa online free

longformer-base-mpdocvqa huggingface.co is an online trial and call api platform, which integrates longformer-base-mpdocvqa's modeling effects, including api services, and provides a free online trial of longformer-base-mpdocvqa, you can try longformer-base-mpdocvqa online for free by clicking the link below.

rubentito longformer-base-mpdocvqa online free url in huggingface.co:

https://huggingface.co/rubentito/longformer-base-mpdocvqa

longformer-base-mpdocvqa install

longformer-base-mpdocvqa is an open source model from GitHub that offers a free installation service, and any user can find longformer-base-mpdocvqa on GitHub to install. At the same time, huggingface.co provides the effect of longformer-base-mpdocvqa install, users can directly use longformer-base-mpdocvqa installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

longformer-base-mpdocvqa install url in huggingface.co:

https://huggingface.co/rubentito/longformer-base-mpdocvqa

Url of longformer-base-mpdocvqa

longformer-base-mpdocvqa huggingface.co Url

Provider of longformer-base-mpdocvqa huggingface.co

rubentito
ORGANIZATIONS

Other API from rubentito