| TwoClass {D2MCS} | R Documentation |
Control parameters for train stage (Bi-class problem).
Description
Implementation to control the computational nuances of train function for bi-class problems.
Super class
D2MCS::TrainFunction -> TwoClass
Methods
Public methods
Inherited methods
Method new()
Usage
TwoClass$new( method, number, savePredictions, classProbs, allowParallel, verboseIter, seed = NULL )
Arguments
methodThe 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"
numberEither the number of folds or number of resampling iterations
savePredictionsAn 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.
classProbsA logical value. Should class probabilities be computed for classification models (along with predicted values) in each resample?
allowParallelA logical value. If a parallel backend is loaded and available, should the function use it?
verboseIterA logical for printing a training log.
seedAn optional integer that will be used to set the seed during model training stage.
Method create()
Creates a trainControl requires for the
training stage.
Usage
TwoClass$create(summaryFunction, search.method = "grid", class.probs = NULL)
Arguments
summaryFunctionAn object inherited from
SummaryFunctionclass.search.methodEither "grid" or "random", describing how the tuning parameter grid is determined.
class.probsA logical indicating if class probabilities should be computed for classification models (along with predicted values) in each resample
Method getTrFunction()
Function used to return the
trainControl object.
Usage
TwoClass$getTrFunction()
Returns
A trainControl object.
Method setClassProbs()
The function allows changing the class computation capabilities.
Usage
TwoClass$setClassProbs(class.probs)
Arguments
Method getMeasures()
Returns the measures used to optimize model hyperparameters.
Usage
TwoClass$getMeasures()
Returns
A character vector.
Method getType()
Obtains the type of classification problem ("Bi-class" or "Multi-class").
Usage
TwoClass$getType()
Returns
A character vector with "Bi-class" value.
Method setSummaryFunction()
Function used to change the SummaryFunction
used in the training stage.
Usage
TwoClass$setSummaryFunction(summaryFunction)
Arguments
summaryFunctionAn object inherited from
SummaryFunctionclass.
Method clone()
The objects of this class are cloneable with this method.
Usage
TwoClass$clone(deep = FALSE)
Arguments
deepWhether to make a deep clone.