Update
Browse files
app.py
CHANGED
|
@@ -56,6 +56,7 @@ for bug_id, time in bug_id_to_time.items():
|
|
| 56 |
LEADERBOARD_DF = get_leaderboard_df(EVAL_REQUESTS_PATH, COLS, total_issues)
|
| 57 |
for row in LEADERBOARD_DF.itertuples():
|
| 58 |
model_cnt += 1
|
|
|
|
| 59 |
for fix in row.fixed_bug_ids:
|
| 60 |
timeline_xs.append(bug_id_to_time[fix])
|
| 61 |
timeline_ys.append(model_cnt)
|
|
|
|
| 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)
|