Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions bugbug/models/defect.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ def get_bugbug_labels(self, kind="bug") -> dict[int, Any]:
assert category in ["True", "False"], f"unexpected category {category}"
if kind == "bug":
classes[int(bug_id)] = 1 if category == "True" else 0
# do not include nobug in regression classifier training data
elif kind == "regression":
if category == "False":
classes[int(bug_id)] = 0
continue
elif kind == "defect_enhancement_task":
if category == "True":
classes[int(bug_id)] = "defect"
Expand All @@ -115,9 +115,9 @@ def get_bugbug_labels(self, kind="bug") -> dict[int, Any]:
if kind == "bug":
classes[int(bug_id)] = 1 if category != "nobug" else 0
elif kind == "regression":
if category == "bug_unknown_regression":
# regression classifier to classify between regression and bug_no_regression only
if category == "bug_unknown_regression" or category == "nobug":
continue

classes[int(bug_id)] = 1 if category == "regression" else 0
elif kind == "defect_enhancement_task":
if category != "nobug":
Expand Down