An open API service indexing awesome lists of open source software.

https://github.com/matheussoranco/abstractive-text-summarization

Abstractive Text Summarization using BART
https://github.com/matheussoranco/abstractive-text-summarization

artificial-intelligence bart deep-learning jupyter-notebook language-model python

Last synced: about 2 months ago
JSON representation

Abstractive Text Summarization using BART

Awesome Lists containing this project

README

          

# Abstractive-Text-Summarization
Bidirectional Autoregressive Transformer (BART) is a Transformer-based encoder-decoder model, often used for sequence-to-sequence tasks like summarization and neural machine translation. BART is pre-trained in a self-supervised fashion on a large text corpus. During pre-training, the text is corrupted and BART is trained to reconstruct the original text (hence called a "denoising autoencoder"). Some pre-training tasks include token masking, token deletion, sentence permutation (shuffle sentences and train BART to fix the order), etc.

# Sources and references:
- [Keras: BART Example](https://keras.io/examples/nlp/abstractive_summarization_with_bart/)
- [BART article on Arxiv](https://arxiv.org/abs/1910.13461)