Update README.md
Browse files
README.md
CHANGED
@@ -90,7 +90,6 @@ This is how to use the model with Faster-Whisper.
|
|
90 |
|
91 |
export LD_LIBRARY_PATH=`python3 -c 'import os; import nvidia.cublas.lib; import nvidia.cudnn.lib; print(os.path.dirname(nvidia.cublas.lib.__file__) + ":" + os.path.dirname(nvidia.cudnn.lib.__file__))'`
|
92 |
```
|
93 |
-
Big shout out to [Yasmin Moslem](https://huggingface.co/ymoslem), for solving this issue.
|
94 |
|
95 |
## Training procedure
|
96 |
|
@@ -112,7 +111,10 @@ This is how to use the model with Faster-Whisper.
|
|
112 |
|
113 |
The performance of the baseline and fine-tuned model were evaluated using the BLEU and CHRF++ metrics on the validation dataset.
|
114 |
This fine-tuned model shows some improvement over the baseline model.
|
115 |
-
|
|
|
|
|
|
|
116 |
### Evaluation details
|
117 |
- BLEU: Measures the overlap between predicted and reference text based on n-grams.
|
118 |
- CHRF: Uses character n-grams for evaluation, making it particularly suitable for morphologically rich languages.
|
|
|
90 |
|
91 |
export LD_LIBRARY_PATH=`python3 -c 'import os; import nvidia.cublas.lib; import nvidia.cudnn.lib; print(os.path.dirname(nvidia.cublas.lib.__file__) + ":" + os.path.dirname(nvidia.cudnn.lib.__file__))'`
|
92 |
```
|
|
|
93 |
|
94 |
## Training procedure
|
95 |
|
|
|
111 |
|
112 |
The performance of the baseline and fine-tuned model were evaluated using the BLEU and CHRF++ metrics on the validation dataset.
|
113 |
This fine-tuned model shows some improvement over the baseline model.
|
114 |
+
| Model | BLEU | ChrF++ |
|
115 |
+
|-----------------------|------:|-------:|
|
116 |
+
| Baseline | 50.91 | 68.1 |
|
117 |
+
| Fine-Tuned |58.3 | 73.62 |
|
118 |
### Evaluation details
|
119 |
- BLEU: Measures the overlap between predicted and reference text based on n-grams.
|
120 |
- CHRF: Uses character n-grams for evaluation, making it particularly suitable for morphologically rich languages.
|