Update README.md
Browse files
README.md
CHANGED
@@ -7,4 +7,15 @@ language:
|
|
7 |
base_model:
|
8 |
- openai/whisper-tiny
|
9 |
pipeline_tag: automatic-speech-recognition
|
10 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
base_model:
|
8 |
- openai/whisper-tiny
|
9 |
pipeline_tag: automatic-speech-recognition
|
10 |
+
---
|
11 |
+
|
12 |
+
Resultater på [CoRal-project/coral](https://huggingface.co/datasets/CoRal-project/coral/) test.
|
13 |
+
* CER: 15.93%
|
14 |
+
* WER: 34.30%
|
15 |
+
|
16 |
+
```python
|
17 |
+
from transformers import pipeline
|
18 |
+
|
19 |
+
pipe = pipeline("automatic-speech-recognition",
|
20 |
+
model="rasgaard/whisper-tiny.da")
|
21 |
+
```
|