Ahmad Shallouf commited on
Commit
5eb3c1d
·
1 Parent(s): b1839bb

added full names to tabs

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -11,7 +11,7 @@ with gr.Blocks() as demo:
11
  gr.Markdown("### Leaderboards")
12
 
13
  # CQI Tab
14
- with gr.Tab("CQI"):
15
  gr.Markdown("### Comparative Question Identification Leaderboard")
16
  # read dataframe from CQI_Learboard.csv
17
  # TODO: replace the following line with the actual leaderboard file
@@ -19,17 +19,17 @@ with gr.Blocks() as demo:
19
  cqi_leaderboard = gr.components.Dataframe(CQI_Leaderboard)
20
 
21
  # OAI Tab
22
- with gr.Tab("OAI"):
23
  gr.Markdown("### Object & Aspect Identification Leaderboard")
24
  gr.Markdown("The OAI leaderboard will be opened soon!")
25
 
26
  # SC Tab
27
- with gr.Tab("SC"):
28
  gr.Markdown("### Stance Clasification Leaderboard")
29
  gr.Markdown("The SC leaderboard will be opened soon!")
30
 
31
  # SG Tab
32
- with gr.Tab("SG"):
33
  gr.Markdown("### Summary Generation Leaderboard")
34
  gr.Markdown("The Summary Generation leaderboard will be opened soon!")
35
 
 
11
  gr.Markdown("### Leaderboards")
12
 
13
  # CQI Tab
14
+ with gr.Tab("Question Identification"):
15
  gr.Markdown("### Comparative Question Identification Leaderboard")
16
  # read dataframe from CQI_Learboard.csv
17
  # TODO: replace the following line with the actual leaderboard file
 
19
  cqi_leaderboard = gr.components.Dataframe(CQI_Leaderboard)
20
 
21
  # OAI Tab
22
+ with gr.Tab("Object and Aspect Identification"):
23
  gr.Markdown("### Object & Aspect Identification Leaderboard")
24
  gr.Markdown("The OAI leaderboard will be opened soon!")
25
 
26
  # SC Tab
27
+ with gr.Tab("Stance Classification"):
28
  gr.Markdown("### Stance Clasification Leaderboard")
29
  gr.Markdown("The SC leaderboard will be opened soon!")
30
 
31
  # SG Tab
32
+ with gr.Tab("Summary Generation"):
33
  gr.Markdown("### Summary Generation Leaderboard")
34
  gr.Markdown("The Summary Generation leaderboard will be opened soon!")
35