| 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:** | |
| ```python | |
| from transformers import pipeline | |
| generator = pipeline('summarization', model='heba1998/t5-summarizer-finetuned-demo') | |
| generator('Input article text...') | |
| ```` | |