How to use multi dataset in COQUI #3727
Unanswered
rahmandip
asked this question in
General Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I have installed multi dataset tortoise v2 which contains several pth, how can I choose different pth in code? My code is :
from TTS.api import TTS
import torch
device = 'cuda' if torch.cuda.is_available() else 'cpu'
print("Using device:", device)
print("Initializing TTS model...")
tts = TTS("tts_models/en/multi-dataset/tortoise-v2").to(device)
wav = tts.tts_to_file("Hello, how are you doing today?", file_path="output.wav")
Beta Was this translation helpful? Give feedback.
All reactions