Source code for autoflow.pipeline.components.preprocessing.balance.under_sample.condensed_nearest_neighbour

from autoflow.pipeline.components.data_process_base import AutoFlowDataProcessAlgorithm

__all__ = ["CondensedNearestNeighbour"]


[docs]class CondensedNearestNeighbour(AutoFlowDataProcessAlgorithm): class__ = "CondensedNearestNeighbour" module__ = "imblearn.under_sampling"