BookSum-based Summarizers
Collection
BookSum-tuned text-to-text summarization models
•
7 items
•
Updated
•
3
Fine-tuned further to explore if any improvements vs. the default.
This model is a version of pszemraj/led-large-book-summary further fine-tuned for two epochs.
It's recommended to use this model with beam search decoding. If interested, you can also use the textsum
util repo to have most of this abstracted out for you:
pip install -U textsum
from textsum.summarize import Summarizer
model_name = "pszemraj/led-large-book-summary-continued"
summarizer = Summarizer(model_name) # GPU auto-detected
text = "put the text you don't want to read here"
summary = summarizer.summarize_string(text)
print(summary)
The following hyperparameters were used during training: