__init__.py 448 B

1234567891011
  1. """
  2. The :mod:`sklearn.semi_supervised` module implements semi-supervised learning
  3. algorithms. These algorithms utilize small amounts of labeled data and large
  4. amounts of unlabeled data for classification tasks. This module includes Label
  5. Propagation.
  6. """
  7. from ._label_propagation import LabelPropagation, LabelSpreading
  8. from ._self_training import SelfTrainingClassifier
  9. __all__ = ["SelfTrainingClassifier", "LabelPropagation", "LabelSpreading"]