[패스트캠퍼스 수강 후기] 데이터분석 인강 100% 환급 챌린지 37회차 미션
42. ch06. sklearn - 앙상블 - 02. 보팅(Voting) 앙상블 - 45. ch06. sklearn - 앙상블 - 05. 부스팅(Boosting) 앙상블 42. ch06. sklearn - 앙상블 - 02. 보팅(Voting) 앙상블 Voting은 단어 뜻 그대로 투표를 통해 결정하는 방식 from sklearn.ensemble import VotingRegressor, VotingClassifier Tuple 형태로 모델을 정의 single_models = [ ('linear_reg', linear_reg), ('ridge', ridge), ('lasso', lasso), ('elasticnet_pipeline', elasticnet_pipeline), ('poly_pipeline', ..