z-uo/female-LJSpeech-italian
Updated • 101 • 3
How to use z-uo/vits-female-it with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-to-speech", model="z-uo/vits-female-it") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("z-uo/vits-female-it", dtype="auto")pip install TTS
git clone https://huggingface.co/z-uo/vits-female-it
# predict one
tts --text "ciao pluto" --model_path "vits-female-it/best_model.pth.tar" --config_path "vits-female-it/config.json"
# predict server
tts-server --model_path "vits-female-it/best_model.pth.tar" --config_path "vits-female-it/config.json"
firefox localhost:5002
More information about training script in this repo.