Advertisement
gry1994tistorycom

Untitled

May 30th, 2020
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
R 0.37 KB | None | 0 0
  1. # [Q6-2] 최적 하이퍼 파라미터를 찾고 결과분석
  2. AdaBoost.model <- boosting(earthquateYN~., AdaBoost.trn, boos=TRUE,
  3.                           mfinal=50)
  4.  
  5. AdaBoost.prey <- predict(AdaBoost.model, AdaBoost.tst[,-69])
  6. AdaBoost.cfm <- table(AdaBoost.tst$earthquateYN, AdaBoost.prey$class)
  7.  
  8. Perf.Table[7,] <- perf_eval(AdaBoost.cfm) # 결과 저장
  9. Perf.Table
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement