Implementation to control the computational nuances of train function for bi-class problems.
D2MCS::TrainFunction
-> TwoClass
new()
TwoClass$new(
method,
number,
savePredictions,
classProbs,
allowParallel,
verboseIter,
seed = NULL
)
method
The resampling method: "boot", "boot632", "optimism_boot", "boot_all", "cv", "repeatedcv", "LOOCV", "LGOCV" (for repeated training/test splits), "none" (only fits one model to the entire training set), "oob" (only for random forest, bagged trees, bagged earth, bagged flexible discriminant analysis, or conditional tree forest models), timeslice, "adaptive_cv", "adaptive_boot" or "adaptive_LGOCV"
number
Either the number of folds or number of resampling iterations
savePredictions
An indicator of how much of the hold-out predictions for each resample should be saved. Values can be either "all", "final", or "none". A logical value can also be used that convert to "all" (for true) or "none" (for false). "final" saves the predictions for the optimal tuning parameters.
classProbs
A logical value. Should class probabilities be computed for classification models (along with predicted values) in each resample?
allowParallel
A logical value. If a parallel backend is loaded and available, should the function use it?
verboseIter
A logical for printing a training log.
seed
An optional integer that will be used to set the seed during model training stage.
create()
Creates a trainControl
requires for the
training stage.
TwoClass$create(summaryFunction, search.method = "grid", class.probs = NULL)
summaryFunction
An object inherited from
SummaryFunction
class.
search.method
Either "grid" or "random", describing how the tuning parameter grid is determined.
class.probs
A logical indicating if class probabilities should be computed for classification models (along with predicted values) in each resample
getTrFunction()
Function used to return the
trainControl
object.
TwoClass$getTrFunction()
A trainControl
object.
setClassProbs()
The function allows changing the class computation capabilities.
TwoClass$setClassProbs(class.probs)
getMeasures()
Returns the measures used to optimize model hyperparameters.
TwoClass$getMeasures()
A character vector.
getType()
Obtains the type of classification problem ("Bi-class" or "Multi-class").
TwoClass$getType()
A character vector with "Bi-class" value.
setSummaryFunction()
Function used to change the SummaryFunction
used in the training stage.
TwoClass$setSummaryFunction(summaryFunction)
summaryFunction
An object inherited from
SummaryFunction
class.
clone()
The objects of this class are cloneable with this method.
TwoClass$clone(deep = FALSE)
deep
Whether to make a deep clone.
TrainFunction