-
make_pipeline 의 문제점? 다양한 모델CodingPython 2022. 1. 9. 23:16
clf = make_pipeline(StandardScaler(),LinearSVC(random_state=0, tol=1e-5))
clf = make_pipeline(StandardScaler(),SVC(gamma='auto'))
Regression (회귀) 라서 작동을 안한다
Classifier (분류)기만 작동 하는 듯...
clf = make_pipeline(StandardScaler(),SVR(C=1.0, epsilon=0.2))'CodingPython' 카테고리의 다른 글
tqqq 이번년도 50프로 하락 가능성 존재하지만... (3) 2022.01.14 얼굴인식에 대한 단상 (0) 2022.01.12 GradientBoostingClassifierTOcorrelationTOheatmap (0) 2022.01.08 클래스, 힙 메모리, 스택 메모리 개념, 코딩도장 34.6 (0) 2022.01.05 dataframe to CNN (0) 2022.01.04