MCPcopy Create free account

hub / github.com/modAL-python/modAL / types & classes

Types & classes30 in github.com/modAL-python/modAL

↓ 39 callersClassActiveLearner
This class is an model of a general classic (machine learning) active learning algorithm. Args: estimator: The estimator to be used
modAL/models/learners.py:20
↓ 7 callersClassCommittee
This class is an abstract model of a committee-based active learning algorithm. Args: learner_list: A list of ActiveLearners forming
modAL/models/learners.py:438
↓ 3 callersClassBayesianOptimizer
This class is an abstract model of a Bayesian optimizer algorithm. Args: estimator: The estimator to be used in the Bayesian optimiz
modAL/models/learners.py:305
↓ 2 callersClassCommitteeRegressor
This class is an abstract model of a committee-based active learning regression. Args: learner_list: A list of ActiveLearners forming
modAL/models/learners.py:632
↓ 2 callersClassTorch_Model
tests/core_tests.py:722
↓ 1 callersClassDeepActiveLearner
This class is an model of a general deep active learning algorithm. Differences to the classical ActiveLearner are: - Data is no memb
modAL/models/learners.py:183
↓ 1 callersClassMockClassifier
tests/example_tests/multidimensional_data.py:9
↓ 1 callersClassTorch_Model
examples/pytorch_mc_dropout.py:18
ClassBaseCommittee
Base class for query-by-committee setup. Args: learner_list: List of ActiveLearner objects to form committee. query_strategy:
modAL/models/base.py:210
ClassBaseLearner
Core abstraction in modAL. Args: estimator: The estimator to be used in the active learning loop. query_strategy: Function p
modAL/models/base.py:24
ClassHierarchicalClustering
modAL/cluster.py:10
ClassMockActiveLearner
Mock ActiveLearner for testing.
tests/mock.py:51
ClassMockCommittee
Mock Committee for testing.
tests/mock.py:81
ClassMockEstimator
Mock classifier object for testing.
tests/mock.py:15
ClassMockFunction
Mock utility function for testing.
tests/mock.py:4
ClassTestAcquisitionFunctions
tests/core_tests.py:244
ClassTestActiveLearner
tests/core_tests.py:926
ClassTestBayesianOptimizer
tests/core_tests.py:1226
ClassTestCommittee
tests/core_tests.py:1371
ClassTestCommitteeRegressor
tests/core_tests.py:1532
ClassTestDeepActiveLearner
Tests for the base class methods of the BaseLearner (base.py) are provided in the TestActiveLearner.
tests/core_tests.py:882
ClassTestDensity
tests/core_tests.py:386
ClassTestDisagreements
tests/core_tests.py:407
ClassTestDropout
tests/core_tests.py:744
ClassTestEER
tests/core_tests.py:539
ClassTestExamples
tests/core_tests.py:1672
ClassTestMultilabel
tests/core_tests.py:1610
ClassTestUncertainties
tests/core_tests.py:568
ClassTestUtils
tests/core_tests.py:49
ClassTorch_Model
examples/pytorch_integration.py:18