keithito/lj_speech
Updated • 1.23k • 62
How to use Atrishi/speecht5_tts_voxpopuli_nl with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-to-audio", model="Atrishi/speecht5_tts_voxpopuli_nl") # Load model directly
from transformers import AutoProcessor, AutoModelForTextToSpectrogram
processor = AutoProcessor.from_pretrained("Atrishi/speecht5_tts_voxpopuli_nl")
model = AutoModelForTextToSpectrogram.from_pretrained("Atrishi/speecht5_tts_voxpopuli_nl", device_map="auto")# Load model directly
from transformers import AutoProcessor, AutoModelForTextToSpectrogram
processor = AutoProcessor.from_pretrained("Atrishi/speecht5_tts_voxpopuli_nl")
model = AutoModelForTextToSpectrogram.from_pretrained("Atrishi/speecht5_tts_voxpopuli_nl", device_map="auto")This model is a fine-tuned version of microsoft/speecht5_tts on the lj_speech dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss |
|---|---|---|---|
| 0.4371 | 2.7110 | 1000 | 0.3906 |
| 0.411 | 5.4206 | 2000 | 0.3799 |
| 0.4097 | 8.1303 | 3000 | 0.3765 |
| 0.4148 | 10.8412 | 4000 | 0.3755 |
Base model
microsoft/speecht5_tts
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-to-audio", model="Atrishi/speecht5_tts_voxpopuli_nl")