Pretrained models for article summarization

Hello all!

I am looking for a pre-trained model that is trained for text / article summarization.

Are there such pre-trained models?

Additionally are there training sets for this kind of problem?

1 Like

There are a couple of pre-trained models for use on Hugging Face.
Here is a list of some of the pre-trained models for text summarization.

In this notebook I’ve spun a quick text summarization on some text. Replace the text in the """ Text """ with what you want to be summarized.

1 Like

There are several pre-trained models.
I’ve been using LangChain which provides an API with multiple styles, using OpenAI.
See Summarization — 🦜🔗 LangChain 0.0.162 for examples.

is there a limitation to the input sequence as in chatgpt?

yes, if ur talking abt openai models , then depends on which version of api that ur using

Are there no limit input size open source models?

There are always (practical) input limits…

thank you very much!