lbourdois commited on
Commit
9e7d9be
·
verified ·
1 Parent(s): de2f9b9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -27,11 +27,16 @@ def process_file():
27
  with gr.Blocks() as demo:
28
  gr.Markdown("# Leaderboard")
29
 
30
- process_btn = gr.Button("Process File")
 
 
 
 
 
31
 
32
  df_output = gr.DataFrame(label="DataFrame")
33
  count_output = gr.Textbox(label="Counts")
34
- goat_output = gr.Textbox(label="Current GOAT")
35
 
36
  process_btn.click(
37
  fn=process_file,
 
27
  with gr.Blocks() as demo:
28
  gr.Markdown("# Leaderboard")
29
 
30
+ gr.Markdown(
31
+ "App to find out whether Chris or Loïck is the person who finds the most stuff on Hugging Face in advance."
32
+ "Whoever finds the most by December 31, 2025, will be declared the GOAT and owe the other an O'Tacos."
33
+ )
34
+
35
+ process_btn = gr.Button("Process data history")
36
 
37
  df_output = gr.DataFrame(label="DataFrame")
38
  count_output = gr.Textbox(label="Counts")
39
+ goat_output = gr.Textbox(label="Current GOAT 🐐")
40
 
41
  process_btn.click(
42
  fn=process_file,