Last chance! 50% off unlimited learning
Sale ends in
Fuses a base learner with a search strategy to select its hyperparameters. Creates a learner object, which can be used like any other learner object, but which internally uses tuneParams. If the train function is called on it, the search strategy and resampling are invoked to select an optimal set of hyperparameter values. Finally, a model is fitted on the complete training data with these optimal hyperparameters and returned. See tuneParams for more details.
After training, the optimal hyperparameters (and other related information) can be retrieved with getTuneResult.
makeTuneWrapper(learner, resampling, measures, par.set, control,
show.info = getMlrOption("show.info"))
(Learner | character(1)
)
The learner.
If you pass a string the learner will be created via makeLearner.
(ResampleInstance | ResampleDesc) Resampling strategy to evaluate points in hyperparameter space. If you pass a description, it is instantiated once at the beginning by default, so all points are evaluated on the same training/test sets. If you want to change that behavior, look at TuneControl.
(list of Measure | Measure) Performance measures to evaluate. The first measure, aggregated by the first aggregation function is optimized, others are simply evaluated. Default is the default measure for the task, see here getDefaultMeasure.
(ParamHelpers::ParamSet)
Collection of parameters and their constraints for optimization.
Dependent parameters with a requires
field must use quote
and not
expression
to define it.
(TuneControl) Control object for search method. Also selects the optimization algorithm for tuning.
(logical(1)
)
Print verbose output on console?
Default is set via configureMlr.
Other tune: TuneControl
,
getNestedTuneResultsOptPathDf
,
getNestedTuneResultsX
,
getResamplingIndices
,
getTuneResult
,
makeModelMultiplexerParamSet
,
makeModelMultiplexer
,
makeTuneControlCMAES
,
makeTuneControlDesign
,
makeTuneControlGenSA
,
makeTuneControlGrid
,
makeTuneControlIrace
,
makeTuneControlMBO
,
makeTuneControlRandom
,
tuneParams
, tuneThreshold
Other wrapper: makeBaggingWrapper
,
makeClassificationViaRegressionWrapper
,
makeConstantClassWrapper
,
makeCostSensClassifWrapper
,
makeCostSensRegrWrapper
,
makeDownsampleWrapper
,
makeDummyFeaturesWrapper
,
makeExtractFDAFeatsWrapper
,
makeFeatSelWrapper
,
makeFilterWrapper
,
makeImputeWrapper
,
makeMulticlassWrapper
,
makeMultilabelBinaryRelevanceWrapper
,
makeMultilabelClassifierChainsWrapper
,
makeMultilabelDBRWrapper
,
makeMultilabelNestedStackingWrapper
,
makeMultilabelStackingWrapper
,
makeOverBaggingWrapper
,
makePreprocWrapperCaret
,
makePreprocWrapper
,
makeRemoveConstantFeaturesWrapper
,
makeSMOTEWrapper
,
makeUndersampleWrapper
,
makeWeightedClassesWrapper
# NOT RUN {
task = makeClassifTask(data = iris, target = "Species")
lrn = makeLearner("classif.rpart")
# stupid mini grid
ps = makeParamSet(
makeDiscreteParam("cp", values = c(0.05, 0.1)),
makeDiscreteParam("minsplit", values = c(10, 20))
)
ctrl = makeTuneControlGrid()
inner = makeResampleDesc("Holdout")
outer = makeResampleDesc("CV", iters = 2)
lrn = makeTuneWrapper(lrn, resampling = inner, par.set = ps, control = ctrl)
mod = train(lrn, task)
print(getTuneResult(mod))
# nested resampling for evaluation
# we also extract tuned hyper pars in each iteration
r = resample(lrn, task, outer, extract = getTuneResult)
print(r$extract)
getNestedTuneResultsOptPathDf(r)
getNestedTuneResultsX(r)
# }
Run the code above in your browser using DataLab