File size: 387 Bytes
d7060ee |
1 2 3 4 5 6 7 8 9 10 11 |
from transformers import VitsModel, AutoTokenizer
import torch
model = VitsModel.from_pretrained("SeyedAli/Arabic-Speech-synthesis")
tokenizer = AutoTokenizer.from_pretrained("SeyedAli/Arabic-Speech-synthesis")
text = "السلام عليكم ورحمة الله وبركاته"
inputs = tokenizer(text, return_tensors="pt")
with torch.no_grad():
output = model(**inputs).waveform |