binwang commited on
Commit
47888f7
·
verified ·
1 Parent(s): 46e5256

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app/content.py +5 -4
app/content.py CHANGED
@@ -159,9 +159,10 @@ dataset_diaplay_information = {
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
  }
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