Update frontend/src/App.js
Browse files- frontend/src/App.js +1 -1
frontend/src/App.js
CHANGED
@@ -164,7 +164,7 @@ const App = () => {
|
|
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}/>
|
|
|
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}/>
|