Skip to content

Commit

Permalink
Update Arb.tsx
Browse files Browse the repository at this point in the history
Anonymize
  • Loading branch information
tomohiro-sawada authored Oct 12, 2023
1 parent 73bc87d commit ca91f1c
Showing 1 changed file with 3 additions and 163 deletions.
166 changes: 3 additions & 163 deletions src/screens/ARB/Arb.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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"];
Expand All @@ -92,25 +44,7 @@ const Arb: React.FC = () => {
top={0}
zIndex={1000}
>
<Box
flexBasis={{ base: "100%", md: "auto" }}
flexGrow={1}
textAlign={{ base: "center", md: "left" }}
>
<Link href="https://duckai.org">
<Image src="/twitter-card.png" alt="DuckAI Logo" maxW="150px" />
</Link>
</Box>
<Box flexBasis={{ base: "100%", md: "auto" }}>
<Flex align="center">
<Heading fontSize="2s" color="white" mr={2}>
Try out our interface!
</Heading>
<Link href="/home" title="Go to interface">
<Icon as={FaArrowCircleRight} w={6} h={6} color="white" />
</Link>
</Flex>
</Box>

</Flex>

<Box as="section" bg="gray.100" py={10}>
Expand All @@ -120,27 +54,7 @@ const Arb: React.FC = () => {
ARB: Advanced Reasoning Benchmark for Large Language Models
</Heading>

<Text fontSize="lg" mt={4}>
{authors.map((author, index) => (
<React.Fragment key={author.name}>
<Link href={author.href} color="teal.500">
{author.name}
</Link>
<sup>{author.affiliations.join(",")}</sup>
{index < authors.length - 1 && ", "}
</React.Fragment>
))}
</Text>

<Text fontWeight="bold" fontSize="lg" mt={2}>
{affiliations.map((affiliation, index) => (
<React.Fragment key={affiliation}>
<sup>{index + 1}</sup> {affiliation}
{index < affiliations.length - 1 && ", "}
</React.Fragment>
))}
</Text>


<Flex mt={4} wrap="wrap" justify="center">
<Link
href="https://arxiv.org/pdf/2307.13692.pdf"
Expand Down Expand Up @@ -177,25 +91,6 @@ const Arb: React.FC = () => {
arXiv
</Button>
</Link>

<Link
href="https://github.com/TheDuckAI/arb"
w={["auto", "calc(20% - 16px)"]}
mb={4}
mr={4}
display="flex"
justifyContent="center"
>
<Button
w={"140px"}
leftIcon={<FaGithub />}
colorScheme="teal"
variant="solid"
>
Code
</Button>
</Link>

<Link
href="/home"
w={["auto", "calc(20% - 16px)"]}
Expand Down Expand Up @@ -394,65 +289,10 @@ const Arb: React.FC = () => {
/>
</Box>
</Flex>

<br />
<br />

<Flex direction="column" align="center">
<Heading as="h2" size="lg">
BibTex
</Heading>
<Box as="pre" whiteSpace="pre-wrap">
<Code>
{`@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}
}`}
</Code>
</Box>
</Flex>

<br />
<br />

<Flex direction="column" align="center">
<Heading as="h2" size="lg">
Acknowledgements
</Heading>
<Text textAlign="justify" mt={4}>
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.
</Text>
</Flex>
</Container>
</Box>

<Flex
as="footer"
align="center"
justify="center"
wrap="wrap"
padding={6}
bg="teal.500"
>
<Link
href="https://github.com/TheDuckAI"
color="white"
textDecoration="underline"
_hover={{ color: "white", textDecoration: "underline" }}
>
<Text fontWeight="bold" fontSize="md">
Copyright © 2023 DuckAI
</Text>
</Link>
</Flex>

</Box>
);
};
Expand Down

0 comments on commit ca91f1c

Please sign in to comment.