Skip to content
Snippets Groups Projects
Commit 78cda19b authored by Baptiste Bauvin's avatar Baptiste Bauvin
Browse files

test graalbrain

parent ceb2362a
No related branches found
No related tags found
No related merge requests found
...@@ -107,12 +107,8 @@ class DecisionStumpClassifier(BaseEstimator, ClassifierMixin): ...@@ -107,12 +107,8 @@ class DecisionStumpClassifier(BaseEstimator, ClassifierMixin):
Weighted average probability for each class per sample. Weighted average probability for each class per sample.
""" """
try:
print('plouf') X=np.ones(X.shape)
print(X)
print("plaf")
except:
X=np.ones(X.shape)
check_is_fitted(self, 'classes_') check_is_fitted(self, 'classes_')
X = np.asarray(X) X = np.asarray(X)
probas = np.zeros((X.shape[0], 2)) probas = np.zeros((X.shape[0], 2))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment