12345678910111213141516171819 |
- # -*- 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
|