R caret train Error in evalSummaryFunction: cannnot compute class probabilities for regression

前端 未结 2 585
梦毁少年i
梦毁少年i 2021-01-19 10:23
> cv.ctrl <- trainControl(method = \"repeatedcv\", repeats = 3,
+                         summaryFunction = twoClassSummary,
+                         classPro         


        
2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-19 10:50

    If you changed the values in y to "YES" and "NO" instead of 1 and zero respectively, then the code will run.

    y=ifelse(train.batch$y==0,"No","Yes")
    

提交回复
热议问题