Update app.py
Browse files
app.py
CHANGED
@@ -27,11 +27,16 @@ def process_file():
|
|
27 |
with gr.Blocks() as demo:
|
28 |
gr.Markdown("# Leaderboard")
|
29 |
|
30 |
-
|
|
|
|
|
|
|
|
|
|
|
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,
|