lukecq commited on
Commit
35957e0
β€’
1 Parent(s): 8ab1a84

add contact information

Browse files
Files changed (2) hide show
  1. app.py +11 -0
  2. src/display/about.py +6 -0
app.py CHANGED
@@ -7,6 +7,7 @@ from apscheduler.schedulers.background import BackgroundScheduler
7
  from src.display.about import (
8
  CITATION_BUTTON_LABEL,
9
  CITATION_BUTTON_TEXT,
 
10
  EVALUATION_QUEUE_TEXT,
11
  INTRODUCTION_TEXT,
12
  LLM_BENCHMARKS_TEXT,
@@ -205,6 +206,16 @@ with demo:
205
 
206
  with gr.TabItem("πŸ“ About", elem_id="llm-benchmark-tab-table", id=3):
207
  gr.Markdown(LLM_BENCHMARKS_TEXT, elem_classes="markdown-text")
 
 
 
 
 
 
 
 
 
 
208
 
209
  demo.launch()
210
 
 
7
  from src.display.about import (
8
  CITATION_BUTTON_LABEL,
9
  CITATION_BUTTON_TEXT,
10
+ CONTACT_TEXT,
11
  EVALUATION_QUEUE_TEXT,
12
  INTRODUCTION_TEXT,
13
  LLM_BENCHMARKS_TEXT,
 
206
 
207
  with gr.TabItem("πŸ“ About", elem_id="llm-benchmark-tab-table", id=3):
208
  gr.Markdown(LLM_BENCHMARKS_TEXT, elem_classes="markdown-text")
209
+ # with gr.Row():
210
+ # with gr.Accordion("πŸ“™ Citation", open=False):
211
+ # citation_button = gr.Textbox(
212
+ # value=CITATION_BUTTON_TEXT,
213
+ # label=CITATION_BUTTON_LABEL,
214
+ # lines=20,
215
+ # elem_id="citation-button",
216
+ # show_copy_button=True,
217
+ # )
218
+ gr.Markdown(CONTACT_TEXT, elem_classes="markdown-text")
219
 
220
  demo.launch()
221
 
src/display/about.py CHANGED
@@ -90,3 +90,9 @@ If everything is done, check you can launch the EleutherAIHarness on your model
90
  CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"
91
  CITATION_BUTTON_TEXT = r"""
92
  """
 
 
 
 
 
 
 
90
  CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"
91
  CITATION_BUTTON_TEXT = r"""
92
  """
93
+
94
+ CONTACT_TEXT = f"""
95
+ ## Contact
96
+
97
+ If you have any questions or want to include your models in the leaderboard, please contact Chaoqun Liu (<chaoqun.liu@alibaba-inc.com>) and Wenxuan Zhang (<saike.zwx@alibaba-inc.com>).
98
+ """