7 references to FeatureSubsetModel
Microsoft.ML.Ensemble (7)
Trainer\Binary\EnsembleTrainer.cs (2)
100models.Select(k => new FeatureSubsetModel<float>((TDistPredictor)k)).ToArray(), combiner); 105models.Select(k => new FeatureSubsetModel<float>((TScalarPredictor)k)).ToArray(), combiner);
Trainer\EnsembleModelParametersBase.cs (1)
83Models[i] = new FeatureSubsetModel<TOutput>(predictor, features, metrics);
Trainer\EnsembleTrainerBase.cs (2)
158var model = new FeatureSubsetModel<TOutput>( 226subsetModels[i] = new FeatureSubsetModel<TOutput>(
Trainer\Multiclass\MulticlassDataPartitionEnsembleTrainer.cs (1)
102models.Select(k => new FeatureSubsetModel<VBuffer<float>>((TVectorPredictor)k)).ToArray(),
Trainer\Regression\RegressionEnsembleTrainer.cs (1)
92models.Select(k => new FeatureSubsetModel<float>((TScalarPredictor)k)).ToArray(), combiner);