Spaces:
Running
Running
zhimin-z commited on
Commit ·
9705f45
1
Parent(s): 8e3cff1
add
Browse files
app.py
CHANGED
|
@@ -1120,7 +1120,7 @@ def get_leaderboard_data(vote_entry=None, use_cache=True):
|
|
| 1120 |
"Elo Score": 2,
|
| 1121 |
"Win Rate": 2,
|
| 1122 |
"Conversation Efficiency Index": 2,
|
| 1123 |
-
"Consistency Index": 2,
|
| 1124 |
"Bradley-Terry Coefficient": 2,
|
| 1125 |
"Eigenvector Centrality Value": 2,
|
| 1126 |
"Newman Modularity Score": 2,
|
|
@@ -1149,7 +1149,7 @@ def get_leaderboard_data(vote_entry=None, use_cache=True):
|
|
| 1149 |
"Elo Score",
|
| 1150 |
"Win Rate",
|
| 1151 |
"Conversation Efficiency Index",
|
| 1152 |
-
"Consistency Index",
|
| 1153 |
"Bradley-Terry Coefficient",
|
| 1154 |
"Eigenvector Centrality Value",
|
| 1155 |
"Newman Modularity Score",
|
|
@@ -1288,7 +1288,7 @@ def get_leaderboard_data(vote_entry=None, use_cache=True):
|
|
| 1288 |
"Elo Score": elo_scores.values,
|
| 1289 |
"Win Rate": avr_scores.values,
|
| 1290 |
"Conversation Efficiency Index": cei_result.values,
|
| 1291 |
-
"Consistency Index": mcs_result.values,
|
| 1292 |
"Bradley-Terry Coefficient": bt_scores.values,
|
| 1293 |
"Eigenvector Centrality Value": eigen_scores.values,
|
| 1294 |
"Newman Modularity Score": newman_scores.values,
|
|
@@ -1546,7 +1546,7 @@ with gr.Blocks(title="SWE-Chatbot-Arena", theme=gr.themes.Soft()) as app:
|
|
| 1546 |
"Organization",
|
| 1547 |
"Elo Score",
|
| 1548 |
"Conversation Efficiency Index",
|
| 1549 |
-
"Consistency Index",
|
| 1550 |
],
|
| 1551 |
search_columns=["Model"],
|
| 1552 |
filter_columns=[
|
|
@@ -1575,12 +1575,12 @@ with gr.Blocks(title="SWE-Chatbot-Arena", theme=gr.themes.Soft()) as app:
|
|
| 1575 |
label="Conversation Efficiency Index"
|
| 1576 |
),
|
| 1577 |
ColumnFilter(
|
| 1578 |
-
"Consistency Index",
|
| 1579 |
min=0,
|
| 1580 |
max=1,
|
| 1581 |
default=[0, 1],
|
| 1582 |
type="slider",
|
| 1583 |
-
label="Consistency Index"
|
| 1584 |
),
|
| 1585 |
],
|
| 1586 |
datatype=[
|
|
|
|
| 1120 |
"Elo Score": 2,
|
| 1121 |
"Win Rate": 2,
|
| 1122 |
"Conversation Efficiency Index": 2,
|
| 1123 |
+
"Conversation Consistency Index": 2,
|
| 1124 |
"Bradley-Terry Coefficient": 2,
|
| 1125 |
"Eigenvector Centrality Value": 2,
|
| 1126 |
"Newman Modularity Score": 2,
|
|
|
|
| 1149 |
"Elo Score",
|
| 1150 |
"Win Rate",
|
| 1151 |
"Conversation Efficiency Index",
|
| 1152 |
+
"Conversation Consistency Index",
|
| 1153 |
"Bradley-Terry Coefficient",
|
| 1154 |
"Eigenvector Centrality Value",
|
| 1155 |
"Newman Modularity Score",
|
|
|
|
| 1288 |
"Elo Score": elo_scores.values,
|
| 1289 |
"Win Rate": avr_scores.values,
|
| 1290 |
"Conversation Efficiency Index": cei_result.values,
|
| 1291 |
+
"Conversation Consistency Index": mcs_result.values,
|
| 1292 |
"Bradley-Terry Coefficient": bt_scores.values,
|
| 1293 |
"Eigenvector Centrality Value": eigen_scores.values,
|
| 1294 |
"Newman Modularity Score": newman_scores.values,
|
|
|
|
| 1546 |
"Organization",
|
| 1547 |
"Elo Score",
|
| 1548 |
"Conversation Efficiency Index",
|
| 1549 |
+
"Conversation Consistency Index",
|
| 1550 |
],
|
| 1551 |
search_columns=["Model"],
|
| 1552 |
filter_columns=[
|
|
|
|
| 1575 |
label="Conversation Efficiency Index"
|
| 1576 |
),
|
| 1577 |
ColumnFilter(
|
| 1578 |
+
"Conversation Consistency Index",
|
| 1579 |
min=0,
|
| 1580 |
max=1,
|
| 1581 |
default=[0, 1],
|
| 1582 |
type="slider",
|
| 1583 |
+
label="Conversation Consistency Index"
|
| 1584 |
),
|
| 1585 |
],
|
| 1586 |
datatype=[
|