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

Samll modif

parent 14ea72d8
No related branches found
No related tags found
No related merge requests found
......@@ -101,7 +101,8 @@ class AdaBoostGP(BaseEstimator, ClassifierMixin, BaseBoost):
self.collected_weight_vectors_ = []
for t in range(self.n_iterations):
# Step 4: We find the classifier that maximizes the success, weighted by the sample weights.
# Step 4: We find the classifier that maximizes the success,
# weighted by the sample weights.
classifier_successes = np.dot(classification_matrix.T,
sample_weights * y_neg)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment