m-ric HF Staff commited on
Commit
874b675
·
verified ·
1 Parent(s): ea894cb

Update frontend/src/App.js

Browse files
Files changed (1) hide show
  1. frontend/src/App.js +2 -2
frontend/src/App.js CHANGED
@@ -164,9 +164,9 @@ const App = () => {
164
  </td>
165
  {["Average", "GAIA", "MATH", "SimpleQA"].map(metric => (
166
  <td key={metric}>
167
- <ScoreBar score={item.scores[metric]} isVanilla=false/>
168
  {showVanilla && getVanillaScore(item.model_id, metric) !== undefined && (
169
- <ScoreBar score={getVanillaScore(item.model_id, metric)} isVanilla=true/>
170
  )}
171
  </td>
172
  ))}
 
164
  </td>
165
  {["Average", "GAIA", "MATH", "SimpleQA"].map(metric => (
166
  <td key={metric}>
167
+ <ScoreBar score={item.scores[metric]} isVanilla={false}/>
168
  {showVanilla && getVanillaScore(item.model_id, metric) !== undefined && (
169
+ <ScoreBar score={getVanillaScore(item.model_id, metric)} isVanilla={true}/>
170
  )}
171
  </td>
172
  ))}