Skip to content

Commit

Permalink
[model:backout] Use the correct pipeline type (#3894)
Browse files Browse the repository at this point in the history
  • Loading branch information
suhaibmujahid committed Dec 5, 2023
1 parent 6b0a6d3 commit c9fdb64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bugbug/models/backout.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def __init__(self, lemmatization=False, bug_data=False):
feature_cleanup.synonyms(),
]

self.extraction_pipeline = ImblearnPipeline(
self.extraction_pipeline = Pipeline(
[
(
"commit_extractor",
Expand All @@ -85,7 +85,7 @@ def __init__(self, lemmatization=False, bug_data=False):
]
)

self.clf = Pipeline(
self.clf = ImblearnPipeline(
[
(
"union",
Expand Down

0 comments on commit c9fdb64

Please sign in to comment.