feature_filter.py 329 B

12345678910111213141516171819
  1. # -*- coding: utf-8 -*-
  2. """
  3. @author: yq
  4. @time: 2024/11/13
  5. @desc: 筛选特征
  6. """
  7. from entitys import DataSplitEntity, DataPreparedEntity
  8. class FeatureFilter():
  9. def __init__(self, ):
  10. pass
  11. def feature_filter(self, data: DataSplitEntity) -> DataPreparedEntity:
  12. pass
  13. if __name__ == "__main__":
  14. pass