Update app.py
Browse files
app.py
CHANGED
@@ -87,6 +87,9 @@ def update_leaderboard(email, team_input, run_id, description, lenient_f1, stric
|
|
87 |
with gr.Blocks() as leaderboard:
|
88 |
|
89 |
gr.Textbox(label= "path", value = os.getcwd())
|
|
|
|
|
|
|
90 |
gr.Markdown(
|
91 |
"""
|
92 |
# Dipromats 2024 Task 2 Leaderboard
|
|
|
87 |
with gr.Blocks() as leaderboard:
|
88 |
|
89 |
gr.Textbox(label= "path", value = os.getcwd())
|
90 |
+
for file in os.listdir('.')
|
91 |
+
gr.Textbox(label= "content", value = file)
|
92 |
+
|
93 |
gr.Markdown(
|
94 |
"""
|
95 |
# Dipromats 2024 Task 2 Leaderboard
|