Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
library_name: transformers
|
3 |
+
pipeline_tag: automatic-speech-recognition
|
4 |
+
license: apache-2.0
|
5 |
+
language:
|
6 |
+
- vi
|
7 |
+
---
|
8 |
+
Converted to Flax from [vinai/PhoWhisper-tiny](https://huggingface.co/vinai/PhoWhisper-tiny) for light-speed inference on TPU
|
9 |
+
```py
|
10 |
+
from whisper_jax import FlaxWhisperPipline
|
11 |
+
import jax.numpy as jnp
|
12 |
+
pipeline = FlaxWhisperPipline("hr16/PhoWhisper-tiny-flax", dtype=jnp.bfloat16, batch_size=16)
|
13 |
+
```
|
14 |
+
|
15 |
+
# PhoWhisper: Automatic Speech Recognition for Vietnamese
|
16 |
+
|
17 |
+
|
18 |
+
We introduce **PhoWhisper** in five versions for Vietnamese automatic speech recognition. PhoWhisper's robustness is achieved through fine-tuning the multilingual [Whisper](https://github.com/openai/whisper) on an 844-hour dataset that encompasses diverse Vietnamese accents. Our experimental study demonstrates state-of-the-art performances of PhoWhisper on benchmark Vietnamese ASR datasets. Please **cite** our PhoWhisper paper when it is used to help produce published results or is incorporated into other software:
|
19 |
+
|
20 |
+
```
|
21 |
+
@inproceedings{PhoWhisper,
|
22 |
+
title = {{PhoWhisper: Automatic Speech Recognition for Vietnamese}},
|
23 |
+
author = {Thanh-Thien Le and Linh The Nguyen and Dat Quoc Nguyen},
|
24 |
+
booktitle = {Proceedings of the ICLR 2024 Tiny Papers track},
|
25 |
+
year = {2024}
|
26 |
+
}
|
27 |
+
```
|
28 |
+
|
29 |
+
For further information or requests, please go to [PhoWhisper's homepage](https://github.com/VinAIResearch/PhoWhisper)!
|