From ca91f1cf3ace226731db49aebbbb270e26146304 Mon Sep 17 00:00:00 2001
From: Tom Sawada <103265438+tomohiro-sawada@users.noreply.github.com>
Date: Thu, 12 Oct 2023 03:19:19 -0400
Subject: [PATCH] Update Arb.tsx
Anonymize
---
src/screens/ARB/Arb.tsx | 166 +---------------------------------------
1 file changed, 3 insertions(+), 163 deletions(-)
diff --git a/src/screens/ARB/Arb.tsx b/src/screens/ARB/Arb.tsx
index 7c2e512..535fc73 100644
--- a/src/screens/ARB/Arb.tsx
+++ b/src/screens/ARB/Arb.tsx
@@ -21,54 +21,6 @@ import {
} from "react-icons/fa";
import { AiFillFile } from "react-icons/ai";
-const authors = [
- {
- name: "Tomohiro Sawada",
- affiliations: [1, 2],
- href: "https://tomohiro-sawada.github.io/",
- },
- {
- name: "Daniel Paleka",
- affiliations: [1, 3],
- href: "https://danielpaleka.com/",
- },
- {
- name: "Alexander Havrilla",
- affiliations: [1, 2],
- href: "https://dahoas.github.io/",
- },
- {
- name: "Pranav Tadepalli",
- affiliations: [1, 2],
- href: "https://pranav.cc/",
- },
- { name: "Paula Vidas", affiliations: [1], href: "#" },
- {
- name: "Alexander Kranias",
- affiliations: [1, 2],
- href: "https://alexkranias.com/index.html",
- },
- { name: "John J Nay", affiliations: [4, 5], href: "http://johnjnay.com/" },
- {
- name: "Kshitij Gupta",
- affiliations: [1, 6],
- href: "https://kshitijkg.github.io/",
- },
- {
- name: "Aran Komatsuzaki",
- affiliations: [1, 2],
- href: "https://twitter.com/arankomatsuzaki",
- },
-];
-
-const affiliations = [
- "DuckAI",
- "Georgia Tech",
- "ETH Zürich",
- "Nomos AI",
- "Stanford University Center for Legal Informatics",
- "MILA",
-];
const Arb: React.FC = () => {
const example_problems = ["/proof_1.png", "/proof_2.png"];
@@ -92,25 +44,7 @@ const Arb: React.FC = () => {
top={0}
zIndex={1000}
>
-
-
-
-
-
-
-
-
- Try out our interface!
-
-
-
-
-
-
+
@@ -120,27 +54,7 @@ const Arb: React.FC = () => {
ARB: Advanced Reasoning Benchmark for Large Language Models
-
- {authors.map((author, index) => (
-
-
- {author.name}
-
- {author.affiliations.join(",")}
- {index < authors.length - 1 && ", "}
-
- ))}
-
-
-
- {affiliations.map((affiliation, index) => (
-
- {index + 1} {affiliation}
- {index < affiliations.length - 1 && ", "}
-
- ))}
-
-
+
{
arXiv
-
-
- }
- colorScheme="teal"
- variant="solid"
- >
- Code
-
-
-
{
/>
-
-
-
-
-
-
- BibTex
-
-
-
- {`@misc{sawada2023arb,
- title={ARB: Advanced Reasoning Benchmark for Large Language Models},
- author={Tomohiro Sawada, Daniel Paleka, Alexander Havrilla, Pranav Tadepalli, Paula Vidas, Alexander Perikles Kranias, John J Nay, Kshitij Gupta, Aran Komatsuzaki},
- year={2023},
- eprint={TBD},
- archivePrefix={arXiv},
- primaryClass={cs.LG, cs.CL}
- }`}
-
-
-
-
-
-
-
-
-
- Acknowledgements
-
-
- We thank Jeffrey Deng for developing and documenting the API, and
- building the project website. We would also like to thank Raunak
- Chowdhuri for helpful comments, and Zhangir Azerbayev for useful
- discussions early on in the project. TS is supported by NSF grant
- 1745583.
-
-
-
-
-
- Copyright © 2023 DuckAI
-
-
-
+
);
};