Skip to content
Snippets Groups Projects
Commit b09e2d1d authored by Dominique Benielli's avatar Dominique Benielli
Browse files

Update combo.py

parent b398e184
No related branches found
No related tags found
No related merge requests found
Pipeline #6495 passed
...@@ -450,6 +450,7 @@ class MuComboClassifier(BaseEnsemble, ClassifierMixin, UBoosting): ...@@ -450,6 +450,7 @@ class MuComboClassifier(BaseEnsemble, ClassifierMixin, UBoosting):
self.n_classes_ = len(self.classes_) self.n_classes_ = len(self.classes_)
self.n_views_ = n_views self.n_views_ = n_views
self.n_features_ = self.X_.shape[1] self.n_features_ = self.X_.shape[1]
self.n_features_in_ = self.n_features_
if self.n_classes_ == 1: if self.n_classes_ == 1:
# This case would lead to division by 0 when computing the cost # This case would lead to division by 0 when computing the cost
# matrix so it needs special handling (but it is an obvious case as # matrix so it needs special handling (but it is an obvious case as
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment