diff --git a/helm-frontend/src/components/Landing/EWoKLanding.tsx b/helm-frontend/src/components/Landing/EWoKLanding.tsx new file mode 100644 index 0000000000..d076ce8543 --- /dev/null +++ b/helm-frontend/src/components/Landing/EWoKLanding.tsx @@ -0,0 +1,56 @@ +import MiniLeaderboard from "@/components/MiniLeaderboard"; +import { Link } from "react-router-dom"; + +export default function EWoKLanding() { + return ( +
+

+ Elements of World Knowledge (EWoK) +

+
+
+

+ In collaboration with{" "} + + Language, Intelligence & Thought (LIT) Lab + {" "} + at{" "} + + Georgia Tech + + , we present the EWoK leaderboard. EWoK is a benchmark for + evaluating world modeling in language models by testing their + ability to use knowledge of a concept to match a target text with a + plausible/implausible context. EWOK targets specific concepts from + multiple knowledge domains known to be vital for world modeling in + humans, including social interactions and spatial relations. +

+
+ + Full Leaderboard + +
+
+
+ +
+ + + +
+
+
+
+ ); +} diff --git a/helm-frontend/src/routes/Home.tsx b/helm-frontend/src/routes/Home.tsx index 52a3e8237a..76a9e3f2df 100644 --- a/helm-frontend/src/routes/Home.tsx +++ b/helm-frontend/src/routes/Home.tsx @@ -11,6 +11,7 @@ import CLEVALanding from "@/components/Landing/CLEVALanding"; import TablesLanding from "@/components/Landing/TablesLanding"; import HomeLanding from "@/components/Landing/HomeLanding"; import Image2StructLanding from "@/components/Landing/Image2StructLanding"; +import EWoKLanding from "@/components/Landing/EWoKLanding"; export default function Home() { // TODO consider a more streamlined way to do this? @@ -38,6 +39,8 @@ export default function Home() { return ; } else if (window.PROJECT_ID === "tables") { return ; + } else if (window.PROJECT_ID === "ewok") { + return ; } else if (window.PROJECT_ID === "home") { return ; } else {