27 overrides of PredictionKind
Microsoft.ML.Ensemble (3)
Trainer\EnsembleDistributionModelParameters.cs (1)
53private protected override PredictionKind PredictionKind { get; }
Trainer\EnsembleModelParameters.cs (1)
47private protected override PredictionKind PredictionKind { get; }
Trainer\Multiclass\EnsembleMulticlassModelParameters.cs (1)
108private protected override PredictionKind PredictionKind => PredictionKind.MulticlassClassification;
Microsoft.ML.FastTree (8)
FastTreeClassification.cs (1)
100private protected override PredictionKind PredictionKind => PredictionKind.BinaryClassification;
FastTreeRanking.cs (1)
1074private protected override PredictionKind PredictionKind => PredictionKind.Ranking;
FastTreeRegression.cs (1)
525private protected override PredictionKind PredictionKind => PredictionKind.Regression;
FastTreeTweedie.cs (1)
561private protected override PredictionKind PredictionKind => PredictionKind.Regression;
GamClassification.cs (1)
200private protected override PredictionKind PredictionKind => PredictionKind.BinaryClassification;
GamRegression.cs (1)
150private protected override PredictionKind PredictionKind => PredictionKind.Regression;
RandomForestClassification.cs (1)
89private protected override PredictionKind PredictionKind => PredictionKind.BinaryClassification;
RandomForestRegression.cs (1)
216private protected override PredictionKind PredictionKind => PredictionKind.Regression;
Microsoft.ML.KMeansClustering (1)
KMeansModelParameters.cs (1)
51private protected override PredictionKind PredictionKind => PredictionKind.Clustering;
Microsoft.ML.LightGbm (3)
LightGbmBinaryTrainer.cs (1)
57private protected override PredictionKind PredictionKind => PredictionKind.BinaryClassification;
LightGbmRankingTrainer.cs (1)
54private protected override PredictionKind PredictionKind => PredictionKind.Ranking;
LightGbmRegressionTrainer.cs (1)
52private protected override PredictionKind PredictionKind => PredictionKind.Regression;
Microsoft.ML.PCA (1)
PcaTrainer.cs (1)
443private protected override PredictionKind PredictionKind => PredictionKind.AnomalyDetection;
Microsoft.ML.StandardTrainers (10)
FactorizationMachine\FieldAwareFactorizationMachineModelParameters.cs (1)
30private protected override PredictionKind PredictionKind => PredictionKind.BinaryClassification;
LdSvm\LdSvmModelParameters.cs (1)
156private protected override PredictionKind PredictionKind { get { return PredictionKind.BinaryClassification; } }
Standard\LinearModelParameters.cs (2)
510private protected override PredictionKind PredictionKind => PredictionKind.BinaryClassification; 586private protected override PredictionKind PredictionKind => PredictionKind.Regression;
Standard\LogisticRegression\MulticlassLogisticRegression.cs (1)
447private protected override PredictionKind PredictionKind => PredictionKind.MulticlassClassification;
Standard\MulticlassClassification\MulticlassNaiveBayesTrainer.cs (1)
252private protected override PredictionKind PredictionKind => PredictionKind.MulticlassClassification;
Standard\MulticlassClassification\OneVersusAllTrainer.cs (1)
278private protected override PredictionKind PredictionKind => PredictionKind.MulticlassClassification;
Standard\MulticlassClassification\PairwiseCouplingTrainer.cs (1)
256private protected override PredictionKind PredictionKind => PredictionKind.MulticlassClassification;
Standard\Simple\SimpleTrainers.cs (2)
61private protected override PredictionKind PredictionKind => PredictionKind.BinaryClassification; 438private protected override PredictionKind PredictionKind => PredictionKind.BinaryClassification;
Microsoft.ML.Vision (1)
ImageClassificationTrainer.cs (1)
1380private protected override PredictionKind PredictionKind => PredictionKind.MulticlassClassification;
2 references to PredictionKind
Microsoft.ML.Data (1)
Dirty\ModelParametersBase.cs (1)
69PredictionKind IPredictor.PredictionKind => PredictionKind;
Microsoft.ML.FastTree (1)
GamModelParameters.cs (1)
900switch (pred.PredictionKind)