createFusionCombiner.Rd
Create the settings for a fusion ensemble
createFusionCombiner(
type = c("uniform", "AUROC", "AUPRC")[1],
evaluation = "CV",
scaleFunction = "normalize"
)
The type of fusion ensemble pick from: 'uniform', 'AUROC', 'AUPRC' or any other metric from evaluationSummary
The evaluation type used to learn the weights (if evaluation is CV and type is 'AUROC' then the cross validation AUROC is used to determine the weight given to of the base models)
How to scale the weights (normalize means weights add up to 1)
if (FALSE) {
comSettingNormAUC <- createFusionCombiner(type = "AUROC",
evaluation = "CV",
scaleFunction = "normalize")
comSettingUniform <- createFusionCombiner(type = "uniform",
evaluation = "CV",
scaleFunction = "normalize")
}