Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

get_bugbug_labels no longer adds nobug type to regression training data #3396

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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