mozilla-foundation/common_voice_13_0
Updated • 2.31k • 4
How to use CEHB/speecht5_tts_common_voice_6_sv with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-to-audio", model="CEHB/speecht5_tts_common_voice_6_sv") # Load model directly
from transformers import AutoProcessor, AutoModelForTextToSpectrogram
processor = AutoProcessor.from_pretrained("CEHB/speecht5_tts_common_voice_6_sv")
model = AutoModelForTextToSpectrogram.from_pretrained("CEHB/speecht5_tts_common_voice_6_sv")This model is a fine-tuned version of microsoft/speecht5_tts on the Common Voice 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.5448 | 4.48 | 1000 | 0.4949 |
| 0.5233 | 8.97 | 2000 | 0.4699 |
| 0.4976 | 13.45 | 3000 | 0.4652 |
| 0.4943 | 17.94 | 4000 | 0.4600 |