Repository on GitHub·Course report (HTML)

We fine-tuned T5 on MultiCochrane (EN) for medical simplification. We added a general-domain step first (WikiLarge), then medical data, with our best sequential T5-small run hitting SARI 44.78, above the ~39 to 43 band we compared against from the literature.
We built a Hugging Face training pipeline aroundT5(small and large in experiments) on English MultiCochrane sentence pairs. We ranOptunasweeps over LR, schedulers, warmup, weight decay, and label smoothing, and we scored outputs withSARI(primary for simplification) plus BLEU/ROUGE andJaccardoverlap to monitor copying ("parroting") versus real rewriting.
We compared training only on medical data withsequential fine-tuning: WikiLarge first, then MultiCochrane. That general-then-medical schedule was our way to learn broad simplification before specialising on jargon-heavy Cochrane-style sentences. With that sequential strategy,our strongest T5-small setup topped out at SARI 44.78(first-step WikiLarge → medical), ahead of a large-model sweep that did not use the same pipeline, so the step order mattered more than only scaling hyperparameters on medical data alone.
We also tried an anti-parrot objective (SARI combined with similarity penalties). It hurt scores in our runs, so we kept SARI as the main selection metric and discussed decoding (temperature vs. beam) qualitatively in the report.
Short pointers tied to the tech stack; full bibliography is inthe HTML report.
Python, PyTorch, Hugging Face Transformers, T5, Optuna, MultiCochrane, WikiLarge, SARI.