Update
Browse files
app.py
CHANGED
@@ -56,7 +56,7 @@ for issue in dataset["test"]:
|
|
56 |
bug_id_to_time[issue["bug_id"]] = pd.to_datetime(issue["knowledge_cutoff"])
|
57 |
bug_id_by_cat[issue["bug_type"]].append(issue["bug_id"])
|
58 |
bug_id_to_type[issue["bug_id"]] = issue["bug_type"]
|
59 |
-
bug_id_to_comp[issue["bug_id"]] = issue["components"]
|
60 |
for comp in issue["components"]:
|
61 |
comp_bug_count[comp] = comp_bug_count.get(comp, 0) + 1
|
62 |
timeline_xs = []
|
|
|
56 |
bug_id_to_time[issue["bug_id"]] = pd.to_datetime(issue["knowledge_cutoff"])
|
57 |
bug_id_by_cat[issue["bug_type"]].append(issue["bug_id"])
|
58 |
bug_id_to_type[issue["bug_id"]] = issue["bug_type"]
|
59 |
+
bug_id_to_comp[issue["bug_id"]] = issue["hints"]["components"]
|
60 |
for comp in issue["components"]:
|
61 |
comp_bug_count[comp] = comp_bug_count.get(comp, 0) + 1
|
62 |
timeline_xs = []
|