Skip to content

Files

113 lines (74 loc) · 5.03 KB

bart.rst

File metadata and controls

113 lines (74 loc) · 5.03 KB

BART

DISCLAIMER: If you see something strange, file a Github Issue and assign @patrickvonplaten

Overview

The Bart model was proposed in BART: Denoising Sequence-to-Sequence Pre-training for Natural Language Generation, Translation, and Comprehension by Mike Lewis, Yinhan Liu, Naman Goyal, Marjan Ghazvininejad, Abdelrahman Mohamed, Omer Levy, Ves Stoyanov and Luke Zettlemoyer on 29 Oct, 2019.

According to the abstract,

  • Bart uses a standard seq2seq/machine translation architecture with a bidirectional encoder (like BERT) and a left-to-right decoder (like GPT).
  • The pretraining task involves randomly shuffling the order of the original sentences and a novel in-filling scheme, where spans of text are replaced with a single mask token.
  • BART is particularly effective when fine tuned for text generation but also works well for comprehension tasks. It matches the performance of RoBERTa with comparable training resources on GLUE and SQuAD, achieves new state-of-the-art results on a range of abstractive dialogue, question answering, and summarization tasks, with gains of up to 6 ROUGE.

The Authors' code can be found here.

Examples

Implementation Notes

BartConfig

.. autoclass:: transformers.BartConfig
    :members:


BartTokenizer

.. autoclass:: transformers.BartTokenizer
    :members:



BartModel

.. autoclass:: transformers.BartModel
    :members: forward

.. autofunction:: transformers.modeling_bart._prepare_bart_decoder_inputs


BartForConditionalGeneration

.. autoclass:: transformers.BartForConditionalGeneration
    :members: forward


BartForSequenceClassification

.. autoclass:: transformers.BartForSequenceClassification
    :members: forward


BartForQuestionAnswering

.. autoclass:: transformers.BartForQuestionAnswering
    :members: forward



TFBartModel

.. autoclass:: transformers.TFBartModel
    :members: call


TFBartForConditionalGeneration

.. autoclass:: transformers.TFBartForConditionalGeneration
    :members: call