// generatePredictionInstances returns a modified version of the // requested base.Instances with only the base.Attributes selected // for training the model. func (b *BaggedModel) generatePredictionInstances(model int, from *base.Instances) *base.Instances { selected := b.selectedAttributes[model] return from.SelectAttributes(selected) }