Update
Browse files
app.py
CHANGED
@@ -54,9 +54,9 @@ for bug_id, time in bug_id_to_time.items():
|
|
54 |
timeline_ys.append(0)
|
55 |
timeline_cols.append("Baseline")
|
56 |
LEADERBOARD_DF = get_leaderboard_df(EVAL_REQUESTS_PATH, COLS, total_issues)
|
|
|
57 |
for row in LEADERBOARD_DF.itertuples():
|
58 |
model_cnt += 1
|
59 |
-
print(row)
|
60 |
for fix in row.fixed_bug_ids:
|
61 |
timeline_xs.append(bug_id_to_time[fix])
|
62 |
timeline_ys.append(model_cnt)
|
|
|
54 |
timeline_ys.append(0)
|
55 |
timeline_cols.append("Baseline")
|
56 |
LEADERBOARD_DF = get_leaderboard_df(EVAL_REQUESTS_PATH, COLS, total_issues)
|
57 |
+
print(LEADERBOARD_DF)
|
58 |
for row in LEADERBOARD_DF.itertuples():
|
59 |
model_cnt += 1
|
|
|
60 |
for fix in row.fixed_bug_ids:
|
61 |
timeline_xs.append(bug_id_to_time[fix])
|
62 |
timeline_ys.append(model_cnt)
|