Instructions to use malaysia-ai/Streaming-STT-1.5B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use malaysia-ai/Streaming-STT-1.5B with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("malaysia-ai/Streaming-STT-1.5B", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Improvements from Model Error Analysis
#1
by aisyahhrazak - opened
- To improve on numbers and silent sound robustness
- add more data on numbers
- add noisy data with silent (model tend to hallucinates when silent)
For add noisy data with silent, I think because I filtered the dataset based on words distance for an example https://github.com/malaysia-ai/dataset/blob/main/streaming-stt/science-streaming.ipynb,
if i > 0 and (d[i]['start'] - d[i - 1]['end']) > 3: