CoolFace
Modelpublic

UX4567/Text-Summarizer-t5-small

sourceHugging Faceupdated 27d agoView on Hugging Face
1likes172downloads
Model Card

Text Summarizer (T5 Fine-Tuned)

This model is a fine-tuned version of T5 designed for abstractive text summarization. It condenses long articles, documents, or paragraphs into short, accurate, and context-aware summaries.

Model Details

Model Description

  • Developed by: Kartik Sharma
  • Model type: Sequence-to-Sequence (Encoder-Decoder)
  • Language(s): English
  • Base Model: T5 Architecture
  • Task: Text Summarization

How to Get Started with the Model

You can load and test the model using the Hugging Face transformers pipeline or direct model classes:

Using Transformers Pipeline

python
from transformers import pipeline

summarizer = pipeline("text-generation", model="UX4567/Text-Summarizer-t5-small")

text = """
Artificial Intelligence (AI) is transforming industries across the globe. From healthcare to finance, 
machine learning models are enabling automation, improving efficiency, and driving innovation. 
As AI technology continues to evolve, ethical considerations and proper implementation become 
critical for sustainable integration.
"""

summary = summarizer(text, max_length=60, min_length=25, do_sample=False)
print(summary[0]['summary_text'])