CONTRIBUTING.md
DCO.md
LICENSE
MANIFEST.in
README.md
pyproject.toml
setup.py
docs/Makefile
docs/README.md
docs/active_learning.rst
docs/bibliography.rst
docs/changelog.rst
docs/classification.rst
docs/conf.py
docs/data_structures.rst
docs/index.rst
docs/install.rst
docs/make.bat
docs/reproducibility_notes.rst
docs/requirements.txt
docs/_static/forkme-right-red-aa0000.png
docs/_static/small-text-logo.png
docs/_static/css/custom.css
docs/_static/figures/active-learning-components.png
docs/_templates/layout.html
docs/api/active_learner.rst
docs/api/classifier.rst
docs/api/data_set.rst
docs/components/initialization.rst
docs/components/query_strategies.rst
docs/components/stopping_criteria.rst
docs/libraries/pytorch_classes.rst
docs/libraries/pytorch_main.rst
docs/libraries/transformers_classes.rst
docs/libraries/transformers_main.rst
docs/libraries/pytorch/classes.inc
docs/libraries/pytorch/main.inc
docs/libraries/transformers/classes.inc
docs/libraries/transformers/main.inc
docs/patterns/pool.rst
docs/patterns/serialization.rst
small_text/__init__.py
small_text/active_learner.py
small_text/base.py
small_text/exceptions.py
small_text/version.json
small_text/version.py
small_text.egg-info/PKG-INFO
small_text.egg-info/SOURCES.txt
small_text.egg-info/dependency_links.txt
small_text.egg-info/requires.txt
small_text.egg-info/top_level.txt
small_text/classifiers/__init__.py
small_text/classifiers/classification.py
small_text/classifiers/factories.py
small_text/data/__init__.py
small_text/data/datasets.py
small_text/data/exceptions.py
small_text/data/sampling.py
small_text/initialization/__init__.py
small_text/initialization/strategies.py
small_text/integrations/__init__.py
small_text/integrations/pytorch/__init__.py
small_text/integrations/pytorch/datasets.py
small_text/integrations/pytorch/exceptions.py
small_text/integrations/pytorch/model_selection.py
small_text/integrations/pytorch/classifiers/__init__.py
small_text/integrations/pytorch/classifiers/base.py
small_text/integrations/pytorch/classifiers/factories.py
small_text/integrations/pytorch/classifiers/kimcnn.py
small_text/integrations/pytorch/models/__init__.py
small_text/integrations/pytorch/models/kimcnn.py
small_text/integrations/pytorch/query_strategies/__init__.py
small_text/integrations/pytorch/query_strategies/strategies.py
small_text/integrations/pytorch/utils/__init__.py
small_text/integrations/pytorch/utils/data.py
small_text/integrations/pytorch/utils/misc.py
small_text/integrations/transformers/__init__.py
small_text/integrations/transformers/datasets.py
small_text/integrations/transformers/classifiers/__init__.py
small_text/integrations/transformers/classifiers/classification.py
small_text/integrations/transformers/classifiers/factories.py
small_text/query_strategies/__init__.py
small_text/query_strategies/base.py
small_text/query_strategies/coresets.py
small_text/query_strategies/exceptions.py
small_text/query_strategies/strategies.py
small_text/stopping_criteria/__init__.py
small_text/stopping_criteria/base.py
small_text/stopping_criteria/kappa.py
small_text/utils/__init__.py
small_text/utils/classification.py
small_text/utils/clustering.py
small_text/utils/context.py
small_text/utils/data.py
small_text/utils/datetime.py
small_text/utils/labels.py
small_text/utils/logging.py
small_text/utils/system.py
tests/__init__.py
tests/integration/__init__.py
tests/integration/test_datasets.py
tests/integration/test_examples.py
tests/integration/classifiers/__init__.py
tests/integration/classifiers/test_svm.py
tests/integration/small_text/__init__.py
tests/integration/small_text/test_serialization.py
tests/integration/small_text/classifiers/__init__.py
tests/integration/small_text/classifiers/test_classification.py
tests/integration/small_text/integrations/__init__.py
tests/integration/small_text/integrations/pytorch/__init__.py
tests/integration/small_text/integrations/pytorch/test_datasets.py
tests/integration/small_text/integrations/pytorch/test_model_selection.py
tests/integration/small_text/integrations/pytorch/test_query_strategies.py
tests/integration/small_text/integrations/pytorch/test_serialization.py
tests/integration/small_text/integrations/pytorch/classifiers/__init__.py
tests/integration/small_text/integrations/pytorch/classifiers/test_base.py
tests/integration/small_text/integrations/pytorch/classifiers/test_kimcnn.py
tests/integration/small_text/integrations/pytorch/classifiers/test_kimcnn_embeddings.py
tests/integration/small_text/integrations/pytorch/models/__init__.py
tests/integration/small_text/integrations/pytorch/models/test_kimcnn.py
tests/integration/small_text/integrations/transformers/__init__.py
tests/integration/small_text/integrations/transformers/test_datasets.py
tests/integration/small_text/integrations/transformers/test_serialization.py
tests/integration/small_text/integrations/transformers/classifiers/__init__.py
tests/integration/small_text/integrations/transformers/classifiers/test_classification.py
tests/unit/__init__.py
tests/unit/small_text/__init__.py
tests/unit/small_text/conftest.py
tests/unit/small_text/test_active_learner.py
tests/unit/small_text/test_version.py
tests/unit/small_text/classifiers/__init__.py
tests/unit/small_text/classifiers/test_classifiers.py
tests/unit/small_text/classifiers/test_factories.py
tests/unit/small_text/data/__init__.py
tests/unit/small_text/data/test_datasets.py
tests/unit/small_text/data/test_sampling.py
tests/unit/small_text/initialization/__init__.py
tests/unit/small_text/initialization/test_strategies.py
tests/unit/small_text/integrations/__init__.py
tests/unit/small_text/integrations/pytorch/__init__.py
tests/unit/small_text/integrations/pytorch/test_datasets.py
tests/unit/small_text/integrations/pytorch/test_strategies.py
tests/unit/small_text/integrations/pytorch/test_utils.py
tests/unit/small_text/integrations/pytorch/classifiers/__init__.py
tests/unit/small_text/integrations/pytorch/classifiers/test_base.py
tests/unit/small_text/integrations/pytorch/classifiers/test_factories.py
tests/unit/small_text/integrations/pytorch/classifiers/test_kimcnn.py
tests/unit/small_text/integrations/pytorch/models/__init__.py
tests/unit/small_text/integrations/pytorch/models/test_kimcnn.py
tests/unit/small_text/integrations/pytorch/utils/__init__.py
tests/unit/small_text/integrations/pytorch/utils/test_data.py
tests/unit/small_text/integrations/transformers/__init__.py
tests/unit/small_text/integrations/transformers/test_datasets.py
tests/unit/small_text/integrations/transformers/classifiers/__init__.py
tests/unit/small_text/integrations/transformers/classifiers/test_classification.py
tests/unit/small_text/integrations/transformers/classifiers/test_factories.py
tests/unit/small_text/query_strategies/__init__.py
tests/unit/small_text/query_strategies/test_base.py
tests/unit/small_text/query_strategies/test_coresets.py
tests/unit/small_text/query_strategies/test_strategies.py
tests/unit/small_text/stopping_criteria/__init__.py
tests/unit/small_text/stopping_criteria/test_base.py
tests/unit/small_text/stopping_criteria/test_kappa.py
tests/unit/small_text/utils/__init__.py
tests/unit/small_text/utils/test_classification.py
tests/unit/small_text/utils/test_clustering.py
tests/unit/small_text/utils/test_data.py
tests/unit/small_text/utils/test_datetime.py
tests/unit/small_text/utils/test_labels.py
tests/unit/small_text/utils/test_logging.py
tests/utils/__init__.py
tests/utils/datasets.py
tests/utils/object_factory.py
tests/utils/testing.py