DamonDemon commited on
Commit
8cac7d7
Β·
1 Parent(s): b0a129f

add submit tab

Browse files
Files changed (2) hide show
  1. app.py +4 -0
  2. src/display/about.py +4 -2
app.py CHANGED
@@ -161,6 +161,10 @@ with demo:
161
  leaderboard_table,
162
  queue=True,
163
  )
 
 
 
 
164
 
165
  with gr.TabItem("πŸ“ About", elem_id="llm-benchmark-tab-table", id=2):
166
  gr.Markdown(LLM_BENCHMARKS_TEXT, elem_classes="markdown-text")
 
161
  leaderboard_table,
162
  queue=True,
163
  )
164
+
165
+ with gr.TabItem("πŸš€ Model Submit", elem_id="llm-benchmark-tab-table", id=2):
166
+ gr.Markdown(EVALUATION_QUEUE_TEXT, elem_classes="markdown-text")
167
+ gr.Markdown(FAQ_TEXT, elem_classes="markdown-text")
168
 
169
  with gr.TabItem("πŸ“ About", elem_id="llm-benchmark-tab-table", id=2):
170
  gr.Markdown(LLM_BENCHMARKS_TEXT, elem_classes="markdown-text")
src/display/about.py CHANGED
@@ -62,9 +62,11 @@ Please feel free to contact Yihua <[email protected]> and Yimeng <[email protected]
62
  FAQ_TEXT = """
63
  """
64
 
65
-
66
  EVALUATION_QUEUE_TEXT = """
67
- # Evaluation for the UnlearnCanvas Benchmark
 
 
 
68
 
69
  """
70
 
 
62
  FAQ_TEXT = """
63
  """
64
 
 
65
  EVALUATION_QUEUE_TEXT = """
66
+ # Evaluation Queue for the UnlearnCanvas Benchmark.
67
+
68
+ Currently, you have the option to share your checkpoint with us for evaluation, and we will subsequently update the benchmark results. In the future, models submitted here will undergo automatic evaluation on our cluster.
69
+
70
 
71
  """
72