카페검색 본문
카페글 본문
-
# < 1204 배깅방법> R 코드 _ R4.1.3 버전 2025.12.02해당카페글 미리보기
adabag') library(adabag) data(iris) sub <- sample(1:150,100) train_data = iris[sub,] test_data = iris[-sub,] iris.bagging <- bagging(Species ~ ., data=train_data, mfinal=10) iris.bagging iris.bagging <- bagging(Species~., data=iris...
-
SASMO 2024-Xi Yun for bagging the prestigious Gold Award. 2024.09.02해당카페글 미리보기
to our brilliant students who shined at the SASMO 2024, held from March 26 to March 29! A special shoutout to Xi Yun for bagging the prestigious Gold Award. Aarav Singh from Year 3 also secured the Bronze Award in the Asia International...
-
재데뷔한 메갈웅기 공중파 음방도 1위함.jpg 2025.07.11해당카페글 미리보기
RKID 더쇼 1위했는데 오늘 공중파인 뮤뱅까지 1위해서 신기.. 🏆 AHOF (@AHOF_official) won first place on Music Bank, bagging the 3rd trophy for “Rendezvous”. They're now the 2025 Rookie with the most music show wins for a debut song so far...
-
앙상블 머신러닝 모델 2026.06.30해당카페글 미리보기
반면, 오른쪽의 **부스팅(Sequential)**은 앞선 모델의 실수를 뒤의 모델이 이어받아 고쳐나가는 구조입니다. ### 1. 배깅 (Bagging: Bootstrap Aggregating) * **원리:** 전체 데이터에서 복원 추출을 통해 여러 개의 샘플 데이터를 만들고, 각각의...
-
Re: 오늘의 마지막 문제. wine2.csv 데잍터를 분류하는 앙상블 모델을 생성하세요 ~ 2024.07.29해당카페글 미리보기
wine_train <- wine[in_train, ] wine_test <- wine[-in_train, ] # 모델 생성 library(ipred) set.seed(1) my_bag <- bagging(Type ~ ., data = wine_train, nbagg = 25) # 모델 예측 p_bag <- predict(my_bag, wine_test[, -1]) p_bag # 모델 평가...