An open API service indexing awesome lists of open source software.

https://github.com/philipamadasun/whisper_torch

An implmenetation of whisper "turbo" model in torch
https://github.com/philipamadasun/whisper_torch

deep-learning fine-tuning torch torchaudio whisper

Last synced: 3 months ago
JSON representation

An implmenetation of whisper "turbo" model in torch

Awesome Lists containing this project

README

        

# whisper_torch
An implementation of whisper `turbo` model in torch (class and feed forward method). Uses the pretrained weights for the `turbo` model.

### Library Versions
The following library versions were used for this work:
- torch 2.6.0
- torchaudio 2.6.0
- transformers 4.47.1
To test and compare inference with original whisper implementation:
```
python3 test.py
```
Torch model currently produces wildy inaccurate inference on shorter audio clips as beam search and other optimizations are not yet implemented.