Transformers How to use AOLCDROM/XTTSv2-Hi_ft with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-to-speech", model="AOLCDROM/XTTSv2-Hi_ft") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("AOLCDROM/XTTSv2-Hi_ft", dtype="auto")