anuragshas
commited on
Commit
•
9633b7d
1
Parent(s):
1577855
Update README.md
Browse files
README.md
CHANGED
@@ -22,10 +22,10 @@ model-index:
|
|
22 |
metrics:
|
23 |
- name: Test WER
|
24 |
type: wer
|
25 |
-
value: 9.
|
26 |
- name: Test CER
|
27 |
type: cer
|
28 |
-
value: 2.
|
29 |
- task:
|
30 |
name: Automatic Speech Recognition
|
31 |
type: automatic-speech-recognition
|
@@ -141,11 +141,11 @@ input_values = processor(resampled_audio, return_tensors="pt").input_values
|
|
141 |
with torch.no_grad():
|
142 |
logits = model(input_values).logits
|
143 |
transcription = processor.batch_decode(logits.numpy()).text
|
144 |
-
# => ""
|
145 |
```
|
146 |
|
147 |
### Eval results on Common Voice 8 "test" (WER):
|
148 |
|
149 |
| Without LM | With LM (run `./eval.py`) |
|
150 |
|---|---|
|
151 |
-
| 16.997 | 9.
|
|
|
22 |
metrics:
|
23 |
- name: Test WER
|
24 |
type: wer
|
25 |
+
value: 9.633
|
26 |
- name: Test CER
|
27 |
type: cer
|
28 |
+
value: 2.614
|
29 |
- task:
|
30 |
name: Automatic Speech Recognition
|
31 |
type: automatic-speech-recognition
|
|
|
141 |
with torch.no_grad():
|
142 |
logits = model(input_values).logits
|
143 |
transcription = processor.batch_decode(logits.numpy()).text
|
144 |
+
# => "domāju ka viņam viss labi"
|
145 |
```
|
146 |
|
147 |
### Eval results on Common Voice 8 "test" (WER):
|
148 |
|
149 |
| Without LM | With LM (run `./eval.py`) |
|
150 |
|---|---|
|
151 |
+
| 16.997 | 9.633 |
|