This is bart-large model finetuned on SQuADv2 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 with following parameters using simpletransformers wrapper:
from transformers import BartTokenizer, BartForQuestionAnswering
import torch
tokenizer = BartTokenizer.from_pretrained('a-ware/bart-squadv2')
model = BartForQuestionAnswering.from_pretrained('a-ware/bart-squadv2')
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 A-ware UG
Runs of aware-ai bart-squadv2 on huggingface.co
30
Total runs
0
24-hour runs
1
3-day runs
2
7-day runs
21
30-day runs
More Information About bart-squadv2 huggingface.co Model
bart-squadv2 huggingface.co
bart-squadv2 huggingface.co is an AI model on huggingface.co that provides bart-squadv2's model effect (), which can be used instantly with this aware-ai bart-squadv2 model. huggingface.co supports a free trial of the bart-squadv2 model, and also provides paid use of the bart-squadv2. Support call bart-squadv2 model through api, including Node.js, Python, http.
bart-squadv2 huggingface.co is an online trial and call api platform, which integrates bart-squadv2's modeling effects, including api services, and provides a free online trial of bart-squadv2, you can try bart-squadv2 online for free by clicking the link below.
aware-ai bart-squadv2 online free url in huggingface.co:
bart-squadv2 is an open source model from GitHub that offers a free installation service, and any user can find bart-squadv2 on GitHub to install. At the same time, huggingface.co provides the effect of bart-squadv2 install, users can directly use bart-squadv2 installed effect in huggingface.co for debugging and trial. It also supports api for free installation.