Instructions to use NhutP/ViWhisper-small with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use NhutP/ViWhisper-small with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="NhutP/ViWhisper-small")# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("NhutP/ViWhisper-small") model = AutoModelForMultimodalLM.from_pretrained("NhutP/ViWhisper-small") - Notebooks
- Google Colab
- Kaggle
| library_name: transformers | |
| license: mit | |
| datasets: | |
| - NhutP/VSV-1100 | |
| - mozilla-foundation/common_voice_14_0 | |
| - AILAB-VNUHCM/vivos | |
| language: | |
| - vi | |
| metrics: | |
| - wer | |
| base_model: | |
| - openai/whisper-small | |
| ## Introduction | |
| - We release a new model for Vietnamese speech regconition task. | |
| - We fine-tuned [openai/whisper-small](https://huggingface.co/openai/whisper-small) on our new dataset [VietSpeech](https://huggingface.co/datasets/NhutP/VietSpeech). | |
| ## Training data | |
| | [VSV-1100](https://huggingface.co/datasets/NhutP/VSV-1100) | T2S* | [CMV14-vi](https://huggingface.co/datasets/mozilla-foundation/common_voice_14_0) |[VIVOS](https://huggingface.co/datasets/AILAB-VNUHCM/vivos)| [VLSP2021](https://vlsp.org.vn/index.php/resources) | Total| | |
| |:----------:|:----------:|:----------:|:----------:|:----------:|:----------:| | |
| | 1100 hours | 11 hours | 3.04 hours | 13.94 hours| 180 hours | 1308 hours | | |
| \* We use a text-to-speech model to generate sentences containing words that do not appear in our dataset. | |
| ## WER result | |
| | [CMV14-vi](https://huggingface.co/datasets/mozilla-foundation/common_voice_14_0) | [VIVOS](https://huggingface.co/datasets/AILAB-VNUHCM/vivos) | [VLSP2020-T1](https://vlsp.org.vn/index.php/resources) | [VLSP2020-T2](https://vlsp.org.vn/index.php/resources) | [VLSP2021-T1](https://vlsp.org.vn/index.php/resources) | [VLSP2021-T2](https://vlsp.org.vn/index.php/resources) |[Bud500](https://huggingface.co/datasets/linhtran92/viet_bud500) | | |
| |:----------:|:----------:|:----------:|:----------:|:----------:|:----------:|:----------:| | |
| |9.79|5.74|14.15|39.25| 14 | 10.06 | 5.97 | | |
| ## Usage | |
| ### Inference | |
| ```python | |
| from transformers import WhisperProcessor, WhisperForConditionalGeneration | |
| import librosa | |
| # load model and processor | |
| processor = WhisperProcessor.from_pretrained("NhutP/ViWhisper-small") | |
| model = WhisperForConditionalGeneration.from_pretrained("NhutP/ViWhisper-small") | |
| prefix_ids = model.generation_config.forced_decoder_ids | |
| model.generation_config.input_ids = prefix_ids | |
| model.generation_config.forced_decoder_ids = None | |
| # load a sample | |
| array, sampling_rate = librosa.load('path_to_audio', sr = 16000) # Load some audio sample | |
| input_features = processor(array, sampling_rate=sampling_rate, return_tensors="pt").input_features | |
| # generate token ids | |
| predicted_ids = model.generate(input_features) | |
| # decode token ids to text | |
| transcription = processor.batch_decode(predicted_ids, skip_special_tokens=True) | |
| ``` | |
| ### Use with pipeline | |
| ```python | |
| from transformers import pipeline | |
| pipe = pipeline( | |
| "automatic-speech-recognition", | |
| model="NhutP/ViWhisper-small", | |
| max_new_tokens=128, | |
| chunk_length_s=30, | |
| return_timestamps=False, | |
| device= '...' # 'cpu' or 'cuda' | |
| ) | |
| output = pipe(path_to_audio_samplingrate_16000)['text'] | |
| ``` | |
| ## Citation | |
| ``` | |
| @misc{VSV-1100, | |
| author = {Pham Quang Nhut and Duong Pham Hoang Anh and Nguyen Vinh Tiep}, | |
| title = {VSV-1100: Vietnamese social voice dataset}, | |
| url = {https://github.com/NhutP/VSV-1100}, | |
| year = {2024} | |
| } | |
| ``` | |
| Also, please give us a star on github: https://github.com/NhutP/ViWhisper if you find our project useful | |
| Contact me at: 22521061@gm.uit.edu.vn (Pham Quang Nhut) |