Spaces:
Running
Running
update banner and contacts
Browse files- _about_us.md +20 -7
- constants.py +1 -1
_about_us.md
CHANGED
@@ -1,15 +1,28 @@
|
|
1 |
## About Us
|
2 |
|
3 |
-
### Team
|
|
|
4 |
|
5 |
-
|
|
|
|
|
6 |
|
7 |
[Bill Yuchen Lin](https://yuchenlin.xyz/), [Ronan Le Bras](https://rlebras.github.io/), and [Yejin Choi](https://homes.cs.washington.edu/~yejin/).
|
8 |
-
|
9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
### Contact
|
11 |
|
12 |
Please contact us in the following ways:
|
13 |
-
- Github Issues/PRs: [https://github.com/WildEval/ZeroEval/](https://github.com/WildEval/ZeroEval/)
|
14 |
-
- Other questions: Please contact
|
15 |
-
|
|
|
1 |
## About Us
|
2 |
|
3 |
+
### Team
|
4 |
+
We are from UW, Stanford, and Allen Institute for AI.
|
5 |
|
6 |
+
**Bill Yuchen Lin** (UW), **Ronan Le Bras** (AI2), **Kyle Richardson** (AI2), **Ashish Sabharwal** (AI2), **Radha Poovendran** (UW), **Peter Clark** (AI2), **Yejin Choi** (Stanford)
|
7 |
+
|
8 |
+
#### Contact:
|
9 |
|
10 |
[Bill Yuchen Lin](https://yuchenlin.xyz/), [Ronan Le Bras](https://rlebras.github.io/), and [Yejin Choi](https://homes.cs.washington.edu/~yejin/).
|
11 |
+
|
12 |
+
|
13 |
+
### Citation
|
14 |
+
|
15 |
+
```bib
|
16 |
+
@article{zebralogic2025,
|
17 |
+
title={ZebraLogic: On the Scaling Limits of LLMs for Logical Reasoning},
|
18 |
+
author={Bill Yuchen Lin and Ronan Le Bras and Kyle Richardson and Ashish Sabharwal and Radha Poovendran and Peter Clark and Yejin Choi},
|
19 |
+
year={2025},
|
20 |
+
url={https://arxiv.org/abs/2502.01100},
|
21 |
+
}
|
22 |
+
```
|
23 |
+
|
24 |
### Contact
|
25 |
|
26 |
Please contact us in the following ways:
|
27 |
+
- Github Issues/PRs: [https://github.com/WildEval/ZeroEval/](https://github.com/WildEval/ZeroEval/)
|
28 |
+
- Other questions: Please contact Bill with email: `[email protected]`
|
|
constants.py
CHANGED
@@ -5,7 +5,7 @@ DEFAULT_K = "∞"
|
|
5 |
# DEFAULT_K = "1500"
|
6 |
|
7 |
banner_url = "https://github.com/WildEval/ZeroEval/blob/main/docs/zebra/zebra_banner.png?raw=true" # the same repo here.
|
8 |
-
BANNER = f'<div style="display: flex; justify-content: flex-start;"><img src="{banner_url}" alt="Banner" style="width:
|
9 |
|
10 |
# TITLE = "<html> <head> <style> h1 {text-align: center;} </style> </head> <body> <h1> 🦁 AI2 WildBench Leaderboard </b> </body> </html>"
|
11 |
|
|
|
5 |
# DEFAULT_K = "1500"
|
6 |
|
7 |
banner_url = "https://github.com/WildEval/ZeroEval/blob/main/docs/zebra/zebra_banner.png?raw=true" # the same repo here.
|
8 |
+
BANNER = f'<div style="display: flex; justify-content: flex-start;"><img src="{banner_url}" alt="Banner" style="width: 50vw; min-width: 250px; max-width: 800px;border: 1px solid gray; border-color: gray black;"> </div>'
|
9 |
|
10 |
# TITLE = "<html> <head> <style> h1 {text-align: center;} </style> </head> <body> <h1> 🦁 AI2 WildBench Leaderboard </b> </body> </html>"
|
11 |
|