Add citation information and link to Github repo
Browse filesThis PR adds the link to the Github repository and a citation section, ensuring that people can find it easier and cite the paper correctly.
README.md
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
---
|
2 |
-
license: apache-2.0
|
3 |
-
library_name: transformers
|
4 |
base_model: openai/whisper-large-v3-turbo
|
5 |
-
|
6 |
-
|
7 |
-
- automatic-speech-recognition
|
8 |
-
- whisper
|
9 |
-
- hf-asr-leaderboard
|
10 |
pipeline_tag: automatic-speech-recognition
|
|
|
|
|
|
|
|
|
|
|
11 |
---
|
12 |
|
13 |
# Model Card for Lite-Whisper large-v3-turbo
|
@@ -32,4 +32,20 @@ Following is the average word error rate (WER) evaluated on the [ESB datasets](h
|
|
32 |
| [lite-whisper-large-v3-turbo](https://huggingface.co/efficient-speech/lite-whisper-large-v3-turbo) | 12.6 | 374M | 172M |
|
33 |
| [lite-whisper-large-v3-turbo-fast](https://huggingface.co/efficient-speech/lite-whisper-large-v3-turbo-fast) | 20.1 | 313M | 172M |
|
34 |
| | | | |
|
35 |
-
| [whisper-medium](https://huggingface.co/openai/whisper-medium) | 14.8 | 306M | 457M |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
|
|
|
|
2 |
base_model: openai/whisper-large-v3-turbo
|
3 |
+
library_name: transformers
|
4 |
+
license: apache-2.0
|
|
|
|
|
|
|
5 |
pipeline_tag: automatic-speech-recognition
|
6 |
+
tags:
|
7 |
+
- audio
|
8 |
+
- automatic-speech-recognition
|
9 |
+
- whisper
|
10 |
+
- hf-asr-leaderboard
|
11 |
---
|
12 |
|
13 |
# Model Card for Lite-Whisper large-v3-turbo
|
|
|
32 |
| [lite-whisper-large-v3-turbo](https://huggingface.co/efficient-speech/lite-whisper-large-v3-turbo) | 12.6 | 374M | 172M |
|
33 |
| [lite-whisper-large-v3-turbo-fast](https://huggingface.co/efficient-speech/lite-whisper-large-v3-turbo-fast) | 20.1 | 313M | 172M |
|
34 |
| | | | |
|
35 |
+
| [whisper-medium](https://huggingface.co/openai/whisper-medium) | 14.8 | 306M | 457M |
|
36 |
+
|
37 |
+
## Citation
|
38 |
+
|
39 |
+
If you use LiteASR in your research, please cite the following paper:
|
40 |
+
|
41 |
+
```
|
42 |
+
@misc{kamahori2025liteasrefficientautomaticspeech,
|
43 |
+
title={LiteASR: Efficient Automatic Speech Recognition with Low-Rank Approximation},
|
44 |
+
author={Keisuke Kamahori and Jungo Kasai and Noriyuki Kojima and Baris Kasikci},
|
45 |
+
year={2025},
|
46 |
+
eprint={2502.20583},
|
47 |
+
archivePrefix={arXiv},
|
48 |
+
primaryClass={cs.LG},
|
49 |
+
url={https://arxiv.org/abs/2502.20583},
|
50 |
+
}
|
51 |
+
```
|