Instructions to use onecxi/mms-telugu-female-indic with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use onecxi/mms-telugu-female-indic with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-to-speech", model="onecxi/mms-telugu-female-indic")# Load model directly from transformers import AutoTokenizer, AutoModelForPreTraining tokenizer = AutoTokenizer.from_pretrained("onecxi/mms-telugu-female-indic") model = AutoModelForPreTraining.from_pretrained("onecxi/mms-telugu-female-indic", device_map="auto") - Notebooks
- Google Colab
- Kaggle
disclaimer update
Browse files
README.md
CHANGED
|
@@ -51,4 +51,15 @@ with torch.no_grad():
|
|
| 51 |
output = model(**inputs).waveform
|
| 52 |
|
| 53 |
Audio(output.numpy(), rate=model.config.sampling_rate)
|
| 54 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
output = model(**inputs).waveform
|
| 52 |
|
| 53 |
Audio(output.numpy(), rate=model.config.sampling_rate)
|
| 54 |
+
```
|
| 55 |
+
|
| 56 |
+
## ⚠️ Misuse and Abuse Disclaimer
|
| 57 |
+
|
| 58 |
+
This Text-to-Speech (TTS) model is provided for research and educational use only. The following are strictly prohibited:
|
| 59 |
+
|
| 60 |
+
* **Impersonation:** Do not generate speech mimicking real individuals without explicit consent.
|
| 61 |
+
* **Deception:** Do not use for fake news, scams, or misleading content.
|
| 62 |
+
* **Illegal or Harmful Use:** Do not use for any illegal, harmful, or malicious activities.
|
| 63 |
+
|
| 64 |
+
By using this model, you agree to follow all applicable laws and ethical standards. The creators are **not responsible** for misuse and strongly oppose unethical applications.
|
| 65 |
+
|