Source code for autoflow.pipeline.components.preprocessing.balance.under_sample.random
from autoflow.pipeline.components.data_process_base import AutoFlowDataProcessAlgorithm
__all__ = ["RandomUnderSampler"]
[docs]class RandomUnderSampler(AutoFlowDataProcessAlgorithm):
class__ = "RandomUnderSampler"
module__ = "imblearn.under_sampling"