Views
No views yet
torch, transformers and sentencepiece —
no NeMo toolkit.| File | Size | Purpose |
|---|---|---|
model-asr.fp16.ts | 867 MB | TorchScript encoder + decoder/joint graph, fp16 |
tokenizer.model | 318 KB | SentencePiece vocabulary (5000 tokens) |
preproc.pt | 132 KB | Mel filterbank, STFT window, feature parameters |
config.json, model_meta.json | — | Model configuration |
modeling_sravaani.py | — | HF wrapper (needs trust_remote_code=True) |
configuration_sravaani.py, processing_sravaani.py | — | Config and processor |
example_inference.py | — | Minimal usage example |
1import torch
2from transformers import AutoModel
3
4model = AutoModel.from_pretrained(
5 "SharadhNaiduTrains/sravaani-flow-model",
6 trust_remote_code=True,
7 dtype=torch.float16,
8).to("cuda").eval()
9
10# note the list: a bare ndarray would be iterated element-wise
11print(model.transcribe(["sample.wav"])[0])MIT License
Copyright (c) 2026 ARTPARK, Indian Institute of Science
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.1@misc{pulikodan2026sravaani10scalinginclusive,
2 title={SraVaani 1.0: Scaling Inclusive Speech Recognition for Indic Languages},
3 author={Sujith Pulikodan and Agneedh Basu and Pavan Kumar J and Pranav D Bhat and Suryansh Shukla and Nihar Desai and Prasanta Kumar Ghosh},
4 year={2026},
5 eprint={2608.08235},
6 archivePrefix={arXiv},
7 primaryClass={eess.AS},
8 url={https://arxiv.org/abs/2608.08235},
9}