Jimin Huang
commited on
Commit
·
04f06ea
1
Parent(s):
6f28f7d
feature: add logoes
Browse files- frontend/public/archimedeslogo.png +0 -0
- frontend/public/logofinai.png +0 -0
- frontend/public/nactemlogo.png +0 -0
- frontend/src/components/Footer/Footer.js +1 -1
- frontend/src/components/Logo/Logo.js +24 -8
- frontend/src/components/Navigation/Navigation.js +0 -15
- frontend/src/pages/LeaderboardPage/LeaderboardPage.js +0 -1
- frontend/src/pages/LeaderboardPage/components/Leaderboard/constants/tooltips.js +7 -7
frontend/public/archimedeslogo.png
ADDED
|
frontend/public/logofinai.png
ADDED
|
frontend/public/nactemlogo.png
ADDED
|
frontend/src/components/Footer/Footer.js
CHANGED
|
@@ -12,7 +12,7 @@ const Footer = () => {
|
|
| 12 |
}}
|
| 13 |
>
|
| 14 |
<Typography variant="body2" color="text.secondary" sx={{ mx: 4 }}>
|
| 15 |
-
©
|
| 16 |
-{" "}
|
| 17 |
<Link
|
| 18 |
href="https://thefin.ai"
|
|
|
|
| 12 |
}}
|
| 13 |
>
|
| 14 |
<Typography variant="body2" color="text.secondary" sx={{ mx: 4 }}>
|
| 15 |
+
© 2025 The Fin AI - Open Greek Financial LLM Leaderboard - Made by the Fin AI community.
|
| 16 |
-{" "}
|
| 17 |
<Link
|
| 18 |
href="https://thefin.ai"
|
frontend/src/components/Logo/Logo.js
CHANGED
|
@@ -41,14 +41,30 @@ const Logo = ({ height = "40px" }) => {
|
|
| 41 |
},
|
| 42 |
}}
|
| 43 |
>
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
</Box>
|
| 53 |
);
|
| 54 |
};
|
|
|
|
| 41 |
},
|
| 42 |
}}
|
| 43 |
>
|
| 44 |
+
<Box
|
| 45 |
+
component="img"
|
| 46 |
+
src="/logofinai.png"
|
| 47 |
+
sx={{
|
| 48 |
+
height: 80,
|
| 49 |
+
mx: 2,
|
| 50 |
+
}}
|
| 51 |
+
/>
|
| 52 |
+
<Box
|
| 53 |
+
component="img"
|
| 54 |
+
src="/nactemlogo.png"
|
| 55 |
+
sx={{
|
| 56 |
+
height: 60,
|
| 57 |
+
mx: 2,
|
| 58 |
+
}}
|
| 59 |
+
/>
|
| 60 |
+
<Box
|
| 61 |
+
component="img"
|
| 62 |
+
src="/archimedeslogo.png"
|
| 63 |
+
sx={{
|
| 64 |
+
height: 60,
|
| 65 |
+
mx: 2,
|
| 66 |
+
}}
|
| 67 |
+
/>
|
| 68 |
</Box>
|
| 69 |
);
|
| 70 |
};
|
frontend/src/components/Navigation/Navigation.js
CHANGED
|
@@ -258,15 +258,6 @@ const Navigation = ({ onToggleTheme, mode }) => {
|
|
| 258 |
>
|
| 259 |
Submit model
|
| 260 |
</MenuItem>
|
| 261 |
-
<MenuItem
|
| 262 |
-
onClick={(e) => {
|
| 263 |
-
handleNavigation("/vote")(e);
|
| 264 |
-
handleMenuClose();
|
| 265 |
-
}}
|
| 266 |
-
selected={location.pathname === "/vote"}
|
| 267 |
-
>
|
| 268 |
-
Vote for next model
|
| 269 |
-
</MenuItem>
|
| 270 |
<MenuItem
|
| 271 |
onClick={(e) => {
|
| 272 |
handleNavigation("/quote")(e);
|
|
@@ -360,12 +351,6 @@ const Navigation = ({ onToggleTheme, mode }) => {
|
|
| 360 |
>
|
| 361 |
Submit model
|
| 362 |
</Box>
|
| 363 |
-
<Box
|
| 364 |
-
onClick={handleNavigation("/vote")}
|
| 365 |
-
sx={linkStyle(location.pathname === "/vote")}
|
| 366 |
-
>
|
| 367 |
-
Vote for next model
|
| 368 |
-
</Box>
|
| 369 |
<Box
|
| 370 |
onClick={handleNavigation("/quote")}
|
| 371 |
sx={linkStyle(location.pathname === "/quote")}
|
|
|
|
| 258 |
>
|
| 259 |
Submit model
|
| 260 |
</MenuItem>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 261 |
<MenuItem
|
| 262 |
onClick={(e) => {
|
| 263 |
handleNavigation("/quote")(e);
|
|
|
|
| 351 |
>
|
| 352 |
Submit model
|
| 353 |
</Box>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 354 |
<Box
|
| 355 |
onClick={handleNavigation("/quote")}
|
| 356 |
sx={linkStyle(location.pathname === "/quote")}
|
frontend/src/pages/LeaderboardPage/LeaderboardPage.js
CHANGED
|
@@ -21,7 +21,6 @@ function LeaderboardPage() {
|
|
| 21 |
return (
|
| 22 |
<Box
|
| 23 |
sx={{
|
| 24 |
-
width: "80%",
|
| 25 |
ph: 2,
|
| 26 |
display: "flex",
|
| 27 |
flexDirection: "column",
|
|
|
|
| 21 |
return (
|
| 22 |
<Box
|
| 23 |
sx={{
|
|
|
|
| 24 |
ph: 2,
|
| 25 |
display: "flex",
|
| 26 |
flexDirection: "column",
|
frontend/src/pages/LeaderboardPage/components/Leaderboard/constants/tooltips.js
CHANGED
|
@@ -53,11 +53,11 @@ export const COLUMN_TOOLTIPS = {
|
|
| 53 |
},
|
| 54 |
]),
|
| 55 |
|
| 56 |
-
QA: createTooltipContent("
|
| 57 |
{
|
| 58 |
label: "Purpose",
|
| 59 |
description:
|
| 60 |
-
"Tests model's ability to understand real-world financial exam questions",
|
| 61 |
subItems: ["Language Understanding", "Question Answering"],
|
| 62 |
},
|
| 63 |
{
|
|
@@ -66,7 +66,7 @@ export const COLUMN_TOOLTIPS = {
|
|
| 66 |
},
|
| 67 |
]),
|
| 68 |
|
| 69 |
-
FNS: createTooltipContent("
|
| 70 |
{
|
| 71 |
label: "Purpose",
|
| 72 |
description:
|
|
@@ -79,11 +79,11 @@ export const COLUMN_TOOLTIPS = {
|
|
| 79 |
},
|
| 80 |
]),
|
| 81 |
|
| 82 |
-
FinNum: createTooltipContent("
|
| 83 |
{
|
| 84 |
label: "Purpose",
|
| 85 |
description:
|
| 86 |
-
"Tests model's ability to recognize
|
| 87 |
subItems: ["Language Understanding", "Named Entity Recognition"],
|
| 88 |
},
|
| 89 |
{
|
|
@@ -92,11 +92,11 @@ export const COLUMN_TOOLTIPS = {
|
|
| 92 |
},
|
| 93 |
]),
|
| 94 |
|
| 95 |
-
FinText: createTooltipContent("
|
| 96 |
{
|
| 97 |
label: "Purpose",
|
| 98 |
description:
|
| 99 |
-
"Tests model's ability to recognize
|
| 100 |
subItems: ["Language Understanding", "Named Entity Recognition"],
|
| 101 |
},
|
| 102 |
{
|
|
|
|
| 53 |
},
|
| 54 |
]),
|
| 55 |
|
| 56 |
+
QA: createTooltipContent("Greek Financial Question Answering (QA):", [
|
| 57 |
{
|
| 58 |
label: "Purpose",
|
| 59 |
description:
|
| 60 |
+
"Tests model's ability to understand real-world Greek financial exam questions",
|
| 61 |
subItems: ["Language Understanding", "Question Answering"],
|
| 62 |
},
|
| 63 |
{
|
|
|
|
| 66 |
},
|
| 67 |
]),
|
| 68 |
|
| 69 |
+
FNS: createTooltipContent("Financial Narrative Summarization (FNS):", [
|
| 70 |
{
|
| 71 |
label: "Purpose",
|
| 72 |
description:
|
|
|
|
| 79 |
},
|
| 80 |
]),
|
| 81 |
|
| 82 |
+
FinNum: createTooltipContent("Financial Number Entity Recognition (FinNum):", [
|
| 83 |
{
|
| 84 |
label: "Purpose",
|
| 85 |
description:
|
| 86 |
+
"Tests model's ability to recognize numbers from financial texts",
|
| 87 |
subItems: ["Language Understanding", "Named Entity Recognition"],
|
| 88 |
},
|
| 89 |
{
|
|
|
|
| 92 |
},
|
| 93 |
]),
|
| 94 |
|
| 95 |
+
FinText: createTooltipContent("Financial Named Entity Recognition (FinText):", [
|
| 96 |
{
|
| 97 |
label: "Purpose",
|
| 98 |
description:
|
| 99 |
+
"Tests model's ability to recognize financial entities, i.e, person, location, and organization",
|
| 100 |
subItems: ["Language Understanding", "Named Entity Recognition"],
|
| 101 |
},
|
| 102 |
{
|