valhalla / bart-large-finetuned-squadv1

huggingface.co
Total runs: 88
24-hour runs: -5
7-day runs: -115
30-day runs: -185
Model's Last Updated: June 14 2021
question-answering

Introduction of bart-large-finetuned-squadv1

Model Details of bart-large-finetuned-squadv1

BART-LARGE finetuned on SQuADv1

This is bart-large model finetuned on SQuADv1 dataset for question answering task

Model details

BART was propsed in the paper BART: Denoising Sequence-to-Sequence Pre-training for Natural Language Generation, Translation, and Comprehension . BART is a seq2seq model intended for both NLG and NLU tasks.

To use BART for question answering tasks, we feed the complete document into the encoder and decoder, and use the top hidden state of the decoder as a representation for each word. This representation is used to classify the token. As given in the paper bart-large achives comparable to ROBERTa on SQuAD. Another notable thing about BART is that it can handle sequences with upto 1024 tokens.

Param #Value
encoder layers 12
decoder layers 12
hidden size 4096
num attetion heads 16
on disk size 1.63GB
Model training

This model was trained on google colab v100 GPU. You can find the fine-tuning colab here Open In Colab .

Results

The results are actually slightly worse than given in the paper. In the paper the authors mentioned that bart-large achieves 88.8 EM and 94.6 F1

Metric #Value
EM 86.8022
F1 92.7342
Model in Action 🚀
from transformers import BartTokenizer, BartForQuestionAnswering
import torch

tokenizer = BartTokenizer.from_pretrained('valhalla/bart-large-finetuned-squadv1')
model = BartForQuestionAnswering.from_pretrained('valhalla/bart-large-finetuned-squadv1')

question, text = "Who was Jim Henson?", "Jim Henson was a nice puppet"
encoding = tokenizer(question, text, return_tensors='pt')
input_ids = encoding['input_ids']
attention_mask = encoding['attention_mask']

start_scores, end_scores = model(input_ids, attention_mask=attention_mask, output_attentions=False)[:2]

all_tokens = tokenizer.convert_ids_to_tokens(input_ids[0])
answer = ' '.join(all_tokens[torch.argmax(start_scores) : torch.argmax(end_scores)+1])
answer = tokenizer.convert_tokens_to_ids(answer.split())
answer = tokenizer.decode(answer)
#answer => 'a nice puppet' 

Created with ❤️ by Suraj Patil Github icon Twitter icon

Runs of valhalla bart-large-finetuned-squadv1 on huggingface.co

88
Total runs
-5
24-hour runs
-55
3-day runs
-115
7-day runs
-185
30-day runs

More Information About bart-large-finetuned-squadv1 huggingface.co Model

bart-large-finetuned-squadv1 huggingface.co

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

bart-large-finetuned-squadv1 huggingface.co Url

https://huggingface.co/valhalla/bart-large-finetuned-squadv1

valhalla bart-large-finetuned-squadv1 online free

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

valhalla bart-large-finetuned-squadv1 online free url in huggingface.co:

https://huggingface.co/valhalla/bart-large-finetuned-squadv1

bart-large-finetuned-squadv1 install

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

bart-large-finetuned-squadv1 install url in huggingface.co:

https://huggingface.co/valhalla/bart-large-finetuned-squadv1

Url of bart-large-finetuned-squadv1

bart-large-finetuned-squadv1 huggingface.co Url

Provider of bart-large-finetuned-squadv1 huggingface.co

valhalla
ORGANIZATIONS

Other API from valhalla

huggingface.co

Total runs: 8
Run Growth: 3
Growth Rate: 37.50%
Updated:October 06 2023
huggingface.co

Total runs: 8
Run Growth: 2
Growth Rate: 25.00%
Updated:September 25 2023
huggingface.co

Total runs: 7
Run Growth: 1
Growth Rate: 14.29%
Updated:October 30 2023
huggingface.co

Total runs: 5
Run Growth: 4
Growth Rate: 80.00%
Updated:June 09 2022
huggingface.co

Total runs: 5
Run Growth: 4
Growth Rate: 80.00%
Updated:August 25 2023
huggingface.co

Total runs: 5
Run Growth: 0
Growth Rate: 0.00%
Updated:September 09 2023