Maria Castellanos commited on
Commit
e9ed1a8
Β·
1 Parent(s): c2e306f

Add message on challenge not being open

Browse files
Files changed (1) hide show
  1. app.py +9 -2
app.py CHANGED
@@ -63,6 +63,8 @@ def gradio_interface():
63
 
64
  Go to the **Leaderboard** to check out how the challenge is going.
65
  To participate, head out to the **Submit** tab and upload your results as a `CSV` file.
 
 
66
  """
67
  )
68
  with gr.Column(scale=2): # smaller side column for logo
@@ -216,7 +218,12 @@ def gradio_interface():
216
  gr.Markdown(welcome_md, elem_id="welcome-md")
217
 
218
  with gr.TabItem("πŸš€ Leaderboard", elem_id="lb_subtabs"):
219
- gr.Markdown("View the leaderboard for each ADMET endpoint by selecting the appropiate tab.")
 
 
 
 
 
220
  # Make separate leaderboards in separate tabs
221
  #per_ep = build_leaderboard()
222
  # Aggregated leaderboard
@@ -289,7 +296,7 @@ def gradio_interface():
289
  )
290
  anon_checkbox = gr.Checkbox(
291
  label="I want to submit anonymously",
292
- info="If checked, your username will be replaced with 'anonymous' on the leaderboard.",
293
  value=False,
294
  )
295
  with gr.Column():
 
63
 
64
  Go to the **Leaderboard** to check out how the challenge is going.
65
  To participate, head out to the **Submit** tab and upload your results as a `CSV` file.
66
+
67
+ **The challenge is not yet open for submissions. Plase stay tuned for the official launch date!**
68
  """
69
  )
70
  with gr.Column(scale=2): # smaller side column for logo
 
218
  gr.Markdown(welcome_md, elem_id="welcome-md")
219
 
220
  with gr.TabItem("πŸš€ Leaderboard", elem_id="lb_subtabs"):
221
+ gr.Markdown("""
222
+ View the leaderboard for each ADMET endpoint by selecting the appropiate tab.
223
+
224
+ **THE RESULTS ON THE LEADERBOARD ARE CURRENTLY PLACEHOLDERS AND DO NOT REPRESENT ACTUAL SUBMISSIONS.**
225
+ Actual results will be available once the challenge is open.
226
+ """)
227
  # Make separate leaderboards in separate tabs
228
  #per_ep = build_leaderboard()
229
  # Aggregated leaderboard
 
296
  )
297
  anon_checkbox = gr.Checkbox(
298
  label="I want to submit anonymously",
299
+ info="If checked, your username will be replaced with the given *alias* on the leaderboard.",
300
  value=False,
301
  )
302
  with gr.Column():