Update frontend/src/App.js
Browse files- 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
|
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
|
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}/>
|