Skip to content

Commit a77d282

Browse files
Merge pull request #94 from parthe/patch-1
Updated doc for ActiveLearner
2 parents f614e27 + f62c752 commit a77d282

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modAL/models/learners.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class ActiveLearner(BaseLearner):
3636
estimator: The estimator to be used in the active learning loop.
3737
query_strategy: Function providing the query strategy for the active learning loop.
3838
X_training: If the model hasn't been fitted yet it is None, otherwise it contains the samples
39-
which the model has been trained on.
39+
which the model has been trained on. If provided, the method fit() of estimator is called during __init__()
4040
y_training: The labels corresponding to X_training.
4141
4242
Examples:
@@ -517,4 +517,4 @@ def vote(self, X: modALinput, **predict_kwargs):
517517
for learner_idx, learner in enumerate(self.learner_list):
518518
prediction[:, learner_idx] = learner.predict(X, **predict_kwargs).reshape(-1, )
519519

520-
return prediction
520+
return prediction

0 commit comments

Comments
 (0)