heba1998's picture
Upload folder using huggingface_hub
aab0ea7 verified
metadata
tags:
  - summarization
  - t5
  - fine-tuned

Fine-Tuned T5 Summarizer Demo

This model is a fine-tuned version of t5-small for abstractive summarization using a small subset of the CNN Daily Mail dataset, demonstrated in a Google Colab notebook.

Usage:

from transformers import pipeline
generator = pipeline('summarization', model='heba1998/t5-summarizer-finetuned-demo')
generator('Input article text...')