Skip to content

Commit 365b6b4

Browse files
committed
add: summary of implemented algorithms
1 parent 41f28f4 commit 365b6b4

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

docs/source/index.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,18 @@ Welcome to the documentation for modAL!
1212

1313
modAL is an active learning framework for Python3, designed with *modularity, flexibility* and *extensibility* in mind. Built on top of scikit-learn, it allows you to rapidly create active learning workflows with nearly complete freedom. What is more, you can easily replace parts with your custom built solutions, allowing you to design novel algorithms with ease.
1414

15+
Currently supported active learning strategies are
16+
17+
- **uncertainty-based sampling:** *least confident* (`Lewis and Catlett <https://www.sciencedirect.com/science/article/pii/B978155860335650026X?via%3Dihub>`_), *max margin* and *max entropy*
18+
- **committee-based algorithms:** *vote entropy*, *consensus entropy* and *max disagreement* (`Cohn et al. <http://www.cs.northwestern.edu/~pardo/courses/mmml/papers/active_learning/improving_generalization_with_active_learning_ML94.pdf>`_)
19+
- **multilabel strategies:** *SVM binary minimum* (`Brinker <https://link.springer.com/chapter/10.1007%2F3-540-31314-1_24>`_), *max loss*, *mean max loss*, (`Li et al. <http://dx.doi.org/10.1109/ICIP.2004.1421535>`_) *MinConfidence*, *MeanConfidence*, *MinScore*, *MeanScore* (`Esuli and Sebastiani <http://dx.doi.org/10.1007/978-3-642-00958-7_12>`_)
20+
- **Bayesian optimization:** *probability of improvement*, *expected improvement* and *upper confidence bound* (`Snoek et al. <https://papers.nips.cc/paper/4522-practical-bayesian-optimization-of-machine-learning-algorithms.pdf>`_)
21+
- **batch active learning:** *ranked batch-mode sampling* (`Cardoso et al. <https://www.sciencedirect.com/science/article/pii/S0020025516313949>`_)
22+
- **information density framework** (`McCallum and Nigam <http://www.kamalnigam.com/papers/emactive-icml98.pdf>`_)
23+
- **stream-based sampling** (`Atlas et al. <https://papers.nips.cc/paper/261-training-connectionist-networks-with-queries-and-selective-sampling.pdf>`_)
24+
- **active regression** with *max standard deviance* sampling for Gaussian processes or ensemble regressors
25+
26+
1527
.. toctree::
1628
:maxdepth: 1
1729
:caption: Overview

0 commit comments

Comments
 (0)