Instructions to use NeuroDonu/RU-XTTS-DonuModel with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use NeuroDonu/RU-XTTS-DonuModel with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-to-speech", model="NeuroDonu/RU-XTTS-DonuModel")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("NeuroDonu/RU-XTTS-DonuModel", dtype="auto") - Notebooks
- Google Colab
- Kaggle
How need run?
#1
by description009 - opened
Hello, how i can run your model on local windows 11?
I don't know why you need it, of course, but look:
- pip install huggingface-hub
- huggingface-cli login
- paste this code in random file (dwn.py, for example)
from huggingface_hub import snapshot_download
model_id="NeuroDonu/RU-XTTS-DonuModel"
snapshot_download(repo_id=model_id, local_dir="/content/xtts-webui/models/RU-XTTS-DonuModel",
local_dir_use_symlinks=False, revision="main")
but change your ways on their.
4. python app.py --deepspeed -hs {host} -v RU-XTTS-DonuModel --share
P.s. I highly recommend using https://huggingface.co/NeuroDonu/RuXTTS/tree/main/10march for model
Thank you.
description009 changed discussion status to closed