Skip to content

Commit 65c2876

Browse files
committed
fix: top level __init__.py fixed (hopefully for real this time)
1 parent cad9cc4 commit 65c2876

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

modAL/__init__.py

-19
Original file line numberDiff line numberDiff line change
@@ -1,19 +0,0 @@
1-
from .models.learners import ActiveLearner, Committee, CommitteeRegressor
2-
from .acquisition import PI, EI, UCB, optimizer_PI, optimizer_EI, optimizer_UCB, max_PI, max_EI, max_UCB
3-
from .uncertainty import classifier_uncertainty, classifier_margin, classifier_entropy, \
4-
uncertainty_sampling, margin_sampling, entropy_sampling
5-
from .disagreement import vote_entropy, consensus_entropy, KL_max_disagreement, \
6-
vote_entropy_sampling, consensus_entropy_sampling, max_disagreement_sampling, max_std_sampling
7-
from .density import information_density
8-
from .batch import ranked_batch, uncertainty_batch_sampling
9-
10-
__all__ = [
11-
'ActiveLearner', 'Committee', 'CommitteeRegressor',
12-
'PI', 'EI', 'UCB', 'optimizer_PI', 'optimizer_EI', 'optimizer_UCB', 'max_PI', 'max_EI', 'max_UCB',
13-
'classifier_uncertainty', 'classifier_margin', 'classifier_entropy',
14-
'uncertainty_sampling', 'margin_sampling', 'entropy_sampling',
15-
'vote_entropy', 'consensus_entropy', 'KL_max_disagreement',
16-
'vote_entropy_sampling', 'consensus_entropy_sampling', 'max_disagreement_sampling', 'max_std_sampling',
17-
'information_density',
18-
'ranked_batch', 'uncertainty_batch_sampling'
19-
]

0 commit comments

Comments
 (0)