m-ric HF staff commited on
Commit
fe01638
Β·
verified Β·
1 Parent(s): de20bba

Update frontend/src/App.js

Browse files
Files changed (1) hide show
  1. frontend/src/App.js +3 -3
frontend/src/App.js CHANGED
@@ -146,8 +146,8 @@ const App = () => {
146
  )}
147
  </th>
148
  {["Average", "GAIA", "MATH", "SimpleQA"].map(benchmark => (
149
- <th key={benchmark + ` subset`} onClick={() => handleSort(benchmark)}>
150
- {benchmark} {sortConfig.key === benchmark && (
151
  sortConfig.direction === 'desc' ? '↓' : '↑'
152
  )}
153
  </th>
@@ -164,7 +164,7 @@ const App = () => {
164
  )}
165
  </td>
166
  {["Average", "GAIA", "MATH", "SimpleQA"].map(metric => (
167
- <td key={metric + ` subset`}>
168
  <ScoreBar score={item.scores[metric]} isVanilla={false}/>
169
  {showVanilla && getVanillaScore(item.model_id, metric) !== undefined && (
170
  <ScoreBar score={getVanillaScore(item.model_id, metric)} isVanilla={true}/>
 
146
  )}
147
  </th>
148
  {["Average", "GAIA", "MATH", "SimpleQA"].map(benchmark => (
149
+ <th key={benchmark} onClick={() => handleSort(benchmark)}>
150
+ {benchmark + ` subset`} {sortConfig.key === benchmark && (
151
  sortConfig.direction === 'desc' ? '↓' : '↑'
152
  )}
153
  </th>
 
164
  )}
165
  </td>
166
  {["Average", "GAIA", "MATH", "SimpleQA"].map(metric => (
167
+ <td key={metric}>
168
  <ScoreBar score={item.scores[metric]} isVanilla={false}/>
169
  {showVanilla && getVanillaScore(item.model_id, metric) !== undefined && (
170
  <ScoreBar score={getVanillaScore(item.model_id, metric)} isVanilla={true}/>