Views
No views yet
google/t5-small trained on a custom text-to-text dataset (derived from cleaned news articles).
The objective was to build a baseline encoder-decoder model that can transform raw article text into simplified outputs (summaries / cleaned text).text2text-generation)5e-05882adamw_torch_fused20| Epoch | Validation Loss |
|---|---|
| 1 | 9.7087 |
| 5 | 4.3784 |
| 10 | 2.3668 |
| 15 | 1.9624 |
| 20 | 1.8684 |
t5-small.1from transformers import pipeline
2
3model = "yakshithk/t5-small-baseline"
4summarizer = pipeline("text2text-generation", model=model)
5
6input_text = "The quick brown fox jumped over the lazy dog."
7output = summarizer(input_text, max_length=50, do_sample=False)
8
9print(output[0]["generated_text"])flan-t5-base, flan-t5-large)1@misc{yakshithk_t5small_baseline,
2 author = {Yakshith K},
3 title = {t5-small-baseline: Fine-tuned T5-small on custom dataset},
4 year = {2025},
5 publisher = {Hugging Face},
6 howpublished = {\url{https://huggingface.co/yakshithk/t5-small-baseline}},
7}