-
Notifications
You must be signed in to change notification settings - Fork 247
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add landing page for HELM Safety (#3006)
- Loading branch information
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import MiniLeaderboard from "@/components/MiniLeaderboard"; | ||
|
||
export default function SafetyLanding() { | ||
return ( | ||
<div className="container mx-auto px-16"> | ||
<h1 className="text-3xl mt-16 my-8 font-bold text-center">HELM Safety</h1> | ||
|
||
<div className="flex flex-col lg:flex-row items-center gap-8"> | ||
<div className="flex-1 text-xl"> | ||
<p> | ||
Language models demonstrate powerful capabilities and pose | ||
significant risks. Given their widespread deployment, standardized | ||
public benchmarking of such models is vital. While language models | ||
are routinely evaluated on standard capability benchmarks, | ||
comparable standardization for benchmarking safety risks lags | ||
behind. To address this gap, we introduce HELM-Safety as a | ||
collection of 5 safety benchmarks that span 6 risk categories (e.g. | ||
violence, fraud, discrimination, sexual, harassment, deception). We | ||
present evaluation results for recent leading open weights and | ||
closed models. | ||
</p> | ||
<div className="flex flex-row justify-center mt-4"> | ||
{/* <a | ||
className="px-10 btn rounded-md mx-4" | ||
href="https://crfm.stanford.edu/2024/05/01/helm-mmlu.html" | ||
> | ||
Blog Post | ||
</a> */} | ||
<a className="px-10 btn rounded-md mx-4" href="#/leaderboard"> | ||
Full Leaderboard | ||
</a> | ||
</div> | ||
</div> | ||
<div className="flex-1"> | ||
<MiniLeaderboard /> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters