--- language: - en base_model: - google/flan-t5-base pipeline_tag: summarization tags: - cnn - text --- This model is a specialized adaptation of google/flan-t5-base, fine-tuned for enhanced performance on text and news summarization using the cnn/dail mail dataset. # Usage from transformers import pipeline summarizer = pipeline("summarization", model="harao-ml/flant5-finetuned-summarize") ### Ask the user for input input_text = input("Enter the text you want to summarize: ") ### Generate the summary summarizer(input_text)