gamboostinter
statistics: Mdl = gamboostinter (X, Y, F0, Method, Pairs, NumTrees, LearnRate, MaxNumSplits)
Boost trees over selected pairs of predictors.
Mdl = gamboostinter (…) fits the interaction phase of a
generalized additive model, continuing from the additive prediction the
predictor phase left rather than refitting it. It is used by
ClassificationGAM and RegressionGAM, and it is not meant to be
called directly.
gamboosttrain takes them.
1 the logistic deviance
and 2 the squared error.
gamboostpairs.
Mdl is a structure with the following fields.
PairBinEdges, a cell of the coarse cut points the
surfaces are held on. Interactions are binned coarser than main effects: a
tree limited to MaxNumSplits splits carves no more regions than that,
so a finer grid buys nothing and costs memory in every pair.
PairValues, a cell of matrices, one value per
cell of the pair’s grid.
Intercept, the constant the recentred surfaces gave up. Add it
to the intercept of the predictor phase.
NumTrees, ReasonForTermination, Deviance and
Residuals, as gamboosttrain reports them.
See also: gamboosttrain, gamboostpairs, gamboostpredict
Source Code: gamboostinter