def _get_clfs(self):
clf_dict = {"rlrclf": RandomizedLogisticRegression(),
"rfclf": RandomForestClassifier(criterion='entropy'),
"dtrclf": DecisionTreeClassifier(criterion='entropy'),
"lrclf": LogisticRegression()
}
return clf_dict
评论列表
文章目录