You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently (v6.0-94), only internal MeanSD function is supported in RFE to compute the variability of the (repeated) CV metrics. As long as one assumes (repeated) CV samples coming from a normal distribution, this is perfectly fine. But in case this assumption is not taken, then reporting only the SD is very limiting.
A simple addition would be to allow the user to specify an e.g. "summarySD" function in caret::rfeControl(functions), which can point to MeanSD by default. A very quick and dirty implementation one can find here. This would allow much more flexibility for custom implementations of selectSize RFE functions since one could pass extra information and not only the SD.
The text was updated successfully, but these errors were encountered:
Currently (
v6.0-94
), only internalMeanSD
function is supported in RFE to compute the variability of the (repeated) CV metrics. As long as one assumes (repeated) CV samples coming from a normal distribution, this is perfectly fine. But in case this assumption is not taken, then reporting only the SD is very limiting.A simple addition would be to allow the user to specify an e.g. "
summarySD
" function incaret::rfeControl(functions)
, which can point toMeanSD
by default. A very quick and dirty implementation one can find here. This would allow much more flexibility for custom implementations ofselectSize
RFE functions since one could pass extra information and not only the SD.The text was updated successfully, but these errors were encountered: