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