Views
No views yet
yl4579/StyleTTS2-LibriTTS on a small (~163 min) corpus of
single-speaker British audio across three speakers from the Bolton /
Lancashire region: Sara Cox, Maxine Peake, Diane Morgan.down rendered as doon (Geordie/Scots realisation rather than
the Bolton/Lancashire target). Epoch 4 is the sweet spot: committed to
Northern intonation, hasn't yet over-fit toward the broader Scots cluster.
Detail in the architecture trade-off write-up.1import torch
2from styletts2_infer import build, make_sampler, compute_style, inference
3import soundfile as sf
4
5model, _ = build("config.yml", "epoch_2nd_00003.pth")
6sampler = make_sampler(model)
7ref_s = compute_style(model, "ref.wav")
8
9audio = inference(
10 model, sampler,
11 text="Hello from a fine-tuned model.",
12 ref_s=ref_s,
13)
14sf.write("out.wav", audio, 24000)epochs_2nd_00020.pth from the LibriTTS multi-speaker training.lr=1e-4 (defaults from config_ft.yml),
batch_size=2, max_len=100 (memory-constrained for RTX 3060 12GB),
lambda_slm=0 (WavLM SLM disabled to fit in memory).| Speaker | Source | Segments | Duration |
|---|---|---|---|
| Sara Cox | "Till the Cows Come Home" + "Thrown" audiobooks | 641 | 101 min |
| Maxine Peake | BFI "Working Class Heroes" keynote | 249 | 36 min |
| Diane Morgan | BFI "Mandy" Q&A | 109 | 26 min |
| Total | 999 | 163 min |
max_len=100 (~1 sec per sample) limits
the prosody-level patterns the model sees; longer-context training on a
bigger GPU would likely produce stronger results.@misc{styletts2-northern-english-ft-2026,
author = {netlinux-ai},
title = {StyleTTS2 fine-tuned for Northern English (Bolton/Lancashire)},
year = {2026},
url = {https://huggingface.co/grahamathf/styletts2-northern-english-ft},
}