patrickvonplaten
commited on
Commit
•
20909ce
1
Parent(s):
b8df67c
Update README.md
Browse files
README.md
CHANGED
@@ -100,10 +100,10 @@ def decode(batch):
|
|
100 |
|
101 |
|
102 |
out = ds.map(decode, remove_columns=ds.column_names)
|
103 |
-
|
104 |
|
105 |
-
print("
|
106 |
-
# -> should give
|
107 |
```
|
108 |
|
109 |
# Contribution
|
@@ -114,4 +114,6 @@ The model was contributed by [cywang](https://huggingface.co/cywang) and [patric
|
|
114 |
|
115 |
The official license can be found [here](https://github.com/microsoft/UniSpeech/blob/main/LICENSE)
|
116 |
|
|
|
|
|
117 |
![design](https://raw.githubusercontent.com/patrickvonplaten/scientific_images/master/unispeech_results.png)
|
|
|
100 |
|
101 |
|
102 |
out = ds.map(decode, remove_columns=ds.column_names)
|
103 |
+
per = wer.compute(predictions=out["prediction"], references=out["target"])
|
104 |
|
105 |
+
print("per", per)
|
106 |
+
# -> should give per 0.06685252146070828
|
107 |
```
|
108 |
|
109 |
# Contribution
|
|
|
114 |
|
115 |
The official license can be found [here](https://github.com/microsoft/UniSpeech/blob/main/LICENSE)
|
116 |
|
117 |
+
See *UniSpeeech-L^{+}* - *it*:
|
118 |
+
|
119 |
![design](https://raw.githubusercontent.com/patrickvonplaten/scientific_images/master/unispeech_results.png)
|