A specialized text summarization model fine-tuned to produce summaries that are easier to read for people with dyslexia.
This model takes long texts and creates shorter, simpler summaries that are easier to read. It uses clear sentences and common words to make the summary accessible for people with dyslexia.
1from transformers import pipeline
2
3summarizer = pipeline("summarization", model="[your-model-name]")
4
5text = "Your long text here..."
6summary = summarizer(text, max_length=100, min_length=30, do_sample=False)
7print(summary[0]['summary_text'])
The model was fine-tuned on a custom dataset of text-summary pairs. The training data includes educational content, news articles, and informational passages with simplified summaries.