def __init__(self):
root = logging.getLogger()
root.setLevel(logging.DEBUG)
root.addHandler(logging.StreamHandler(sys.stdout))
root.addHandler(logging.FileHandler('logs/forwardfeatureselection_knn.log', mode='w'))
clfDict = {1: GrientBoostingModel, 2:KNNModel, 3: DidiXGBoostModel}
self.clf = clfDict[2]()
# self.result = []
# self.featureList = [101,102, 201,502]
self.featureList = [101,102,103,104,105,106,107,
201, 203,204,205,206,
301,
401,402,
501,502,503,504,505,506,507,
601,602,603,604,605,606,
8801,8802
]
return
forwardfeatureselection.py 文件源码
python
阅读 23
收藏 0
点赞 0
评论 0
评论列表
文章目录