You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
481 B
14 lines
481 B
"""Semi-supervised learning algorithms.
|
|
|
|
These algorithms utilize small amounts of labeled data and large amounts of unlabeled
|
|
data for classification tasks.
|
|
"""
|
|
|
|
# Authors: The scikit-learn developers
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
from sklearn.semi_supervised._label_propagation import LabelPropagation, LabelSpreading
|
|
from sklearn.semi_supervised._self_training import SelfTrainingClassifier
|
|
|
|
__all__ = ["LabelPropagation", "LabelSpreading", "SelfTrainingClassifier"]
|