Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisholder committed Nov 20, 2024
1 parent 1c85487 commit c89d854
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aeon/clustering/compose/_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def __init__(self, transformers, clusterer, random_state=None):

def _fit(self, X, y=None):
super()._fit(X, y)
self.labels_ = self.clusterer.labels_
self.labels_ = self.steps_[-1][1].labels_
return self

@classmethod
Expand Down

0 comments on commit c89d854

Please sign in to comment.