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

from autoflow.pipeline.components.data_process_base import AutoFlowDataProcessAlgorithm

__all__ = ["EditedNearestNeighbours"]


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