Text Summarization

Learn to use Hugging Face models for text summarization.

Overview

Imagine being able to summarize a book to get to its crux and skim through one-pager summaries of patents or legal contracts. Similarly, it would also be useful to be able to pick the useful information from heaps of newsletters we’ve subscribed to.

Text summarization is another excellent technique by NLP, that enables us to perform these complex tasks without needing any human experts. While the need for summarization was always there, it wasn’t easy to perform with statistical NLP. Hence it had limited accuracy and usage.

Inference

Sequence-to-sequenceThe NLP task in which both inputs and outputs are sequences rather than scalars. models have taken some NLP tasks to a new level. Text ...