We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, and thanks for this. Working great as FastAPI endpoint for voice.
Is it somehow possible to mix two different voices with each other in this MLX version? Like:
import torch bella = torch.load('voices/af_bella.pt', weights_only=True) sarah = torch.load('voices/af_sarah.pt', weights_only=True) af = torch.mean(torch.stack([bella, sarah]), dim=0) assert torch.equal(af, torch.load('voices/af.pt', weights_only=True))
The text was updated successfully, but these errors were encountered:
My pleasure!
That's an interesting idea, I will experiment in the upcoming release or right after.
Sorry, something went wrong.
When branches are created from issues, their pull requests are automatically linked.
Hi, and thanks for this. Working great as FastAPI endpoint for voice.
Is it somehow possible to mix two different voices with each other in this MLX version?
Like:
The text was updated successfully, but these errors were encountered: