Views
No views yet
/v1/audio/speech endpoint| Language | Code |
|---|---|
| Hindi | hi |
| English | en |
| Telugu | te |
| Tamil | ta |
| Marathi | mr |
| Bengali | bn |
| Kannada | kn |
| Malayalam | ml |
| Gujarati | gu |
| Punjabi | pa |
| Odia | or |
| Assamese | as |
{language_code}_{gender}hi_male, ta_female, en_male, bn_female1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4model = AutoModelForCausalLM.from_pretrained(
5 "srikantp/svara-tts-v1-fp8",
6 torch_dtype=torch.bfloat16,
7 device_map="auto"
8)
9tokenizer = AutoTokenizer.from_pretrained("srikantp/svara-tts-v1-fp8")1@misc{svara-tts-v1-fp8,
2 title={Svara TTS v1 FP8},
3 author={srikantp},
4 year={2025},
5 url={https://huggingface.co/srikantp/svara-tts-v1-fp8}
6}