[Scikit-learn] sklearn.feature_selection.SelectFrom Model


[Scikit-learn] sklearn.feature_selection.SelectFrom Model

√ Class구성요소 이 기능의 목적은 여러 피처들을 다 고려하기에는 시간이 많이 들고 비효율적이기 때문에, 모델에 적합한 피처들을 골라줘! 라는 모델인데요. 주요한 구성요소를 살펴보겠습니다 class sklearn.feature_selection.SelectFromModel(estimator, *, threshold=None, prefit=False, norm_order=1, max_features=None, importance_getter='auto') estimator : 어떤 모델을 사용하냐 (Logistic Regression 등등) threshold: median, mean 등 기타 임계값이 되는 수치 더보기 https://scikit-learn.org/stable/modules/generat..


원문링크 : [Scikit-learn] sklearn.feature_selection.SelectFrom Model