In this tutorial, we will use an example to show you how to implement text summarization using python transformers library.
1.Install transformers library
pip install transformers
2.Use transformers pipeline() to extract text summarization
from transformers import pipeline summarization = pipeline("summarization") original_text = "cocyer.com is a awesome blog" summary_text = summarization(original_text)[0]['summary_text'] print("Summary:", summary_text)
Here original_text should be a long text, summary_text is the text summary of original_text .