facebook/voxpopuli
Viewer • Updated • 1.26M • 83.4k • 160
How to use AdanLee/speecht5_finetuned_voxpopuli_nl with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-to-speech", model="AdanLee/speecht5_finetuned_voxpopuli_nl") # Load model directly
from transformers import AutoProcessor, AutoModelForTextToSpectrogram
processor = AutoProcessor.from_pretrained("AdanLee/speecht5_finetuned_voxpopuli_nl")
model = AutoModelForTextToSpectrogram.from_pretrained("AdanLee/speecht5_finetuned_voxpopuli_nl", device_map="auto")# Load model directly
from transformers import AutoProcessor, AutoModelForTextToSpectrogram
processor = AutoProcessor.from_pretrained("AdanLee/speecht5_finetuned_voxpopuli_nl")
model = AutoModelForTextToSpectrogram.from_pretrained("AdanLee/speecht5_finetuned_voxpopuli_nl", device_map="auto")This model is a fine-tuned version of microsoft/speecht5_tts on the facebook/voxpopuli nl subset 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.5348 | 4.04 | 500 | 0.4926 |
| 0.5155 | 9.02 | 1000 | 0.4783 |
| 0.5091 | 14.0 | 1500 | 0.4747 |
| 0.5004 | 18.04 | 2000 | 0.4725 |
Base model
microsoft/speecht5_tts
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-to-speech", model="AdanLee/speecht5_finetuned_voxpopuli_nl")