# -*- coding: utf-8 -*- """ @author: yq @time: 2024/11/13 @desc: 筛选特征 """ from entitys import DataSplitEntity, DataPreparedEntity class FeatureFilter(): def __init__(self, ): pass def feature_filter(self, data: DataSplitEntity) -> DataPreparedEntity: # 计算最佳分箱 pass if __name__ == "__main__": pass