Upload folder using huggingface_hub
Browse files- app/content.py +5 -4
app/content.py
CHANGED
@@ -159,9 +159,10 @@ dataset_diaplay_information = {
|
|
159 |
|
160 |
|
161 |
metrics_info = {
|
162 |
-
'wer'
|
163 |
-
'llama3_70b_judge'
|
164 |
-
'meteor'
|
165 |
-
'bleu'
|
|
|
166 |
}
|
167 |
|
|
|
159 |
|
160 |
|
161 |
metrics_info = {
|
162 |
+
'wer' : 'Word Error Rate (WER) - The Lower, the better.',
|
163 |
+
'llama3_70b_judge': 'Model-as-a-Judge Peformance. Using LLAMA-3-70B. Scale from 0-100. The higher, the better.',
|
164 |
+
'meteor' : 'METEOR Score. The higher, the better.',
|
165 |
+
'bleu' : 'BLEU Score. The higher, the better.',
|
166 |
+
'string_match' : 'From MMAU paper, after model generating the answer, the correctness is determined by string matching algorithm. https://github.com/Sakshi113/MMAU/blob/main/evaluation.py',
|
167 |
}
|
168 |
|