17 implementations of OutputType
Microsoft.ML.Data (1)
Prediction\Calibrator.cs (1)
299DataViewType IValueMapper.OutputType => _mapper.OutputType;
Microsoft.ML.Ensemble (3)
Trainer\EnsembleDistributionModelParameters.cs (1)
50DataViewType IValueMapper.OutputType => NumberDataViewType.Single;
Trainer\EnsembleModelParameters.cs (1)
46DataViewType IValueMapper.OutputType => NumberDataViewType.Single;
Trainer\Multiclass\EnsembleMulticlassModelParameters.cs (1)
41DataViewType IValueMapper.OutputType => _outputType;
Microsoft.ML.FastTree (2)
FastTree.cs (1)
2815DataViewType IValueMapper.OutputType => OutputType;
GamModelParameters.cs (1)
54DataViewType IValueMapper.OutputType => _outputType;
Microsoft.ML.KMeansClustering (1)
KMeansModelParameters.cs (1)
56DataViewType IValueMapper.OutputType => _outputType;
Microsoft.ML.PCA (1)
PcaTrainer.cs (1)
612DataViewType IValueMapper.OutputType
Microsoft.ML.StandardTrainers (8)
LdSvm\LdSvmModelParameters.cs (1)
266public DataViewType OutputType => NumberDataViewType.Single;
Standard\LinearModelParameters.cs (1)
304DataViewType IValueMapper.OutputType
Standard\LogisticRegression\MulticlassLogisticRegression.cs (1)
451DataViewType IValueMapper.OutputType => OutputType;
Standard\MulticlassClassification\MulticlassNaiveBayesTrainer.cs (1)
256DataViewType IValueMapper.OutputType => _outputType;
Standard\MulticlassClassification\OneVersusAllTrainer.cs (1)
444DataViewType IValueMapper.OutputType
Standard\MulticlassClassification\PairwiseCouplingTrainer.cs (1)
260DataViewType IValueMapper.OutputType => _outputType;
Standard\Simple\SimpleTrainers.cs (2)
65DataViewType IValueMapper.OutputType => NumberDataViewType.Single; 442DataViewType IValueMapper.OutputType => NumberDataViewType.Single;
Microsoft.ML.Vision (1)
ImageClassificationTrainer.cs (1)
1384DataViewType IValueMapper.OutputType => _outputType;
15 references to OutputType
Microsoft.ML.Data (3)
Prediction\Calibrator.cs (2)
299DataViewType IValueMapper.OutputType => _mapper.OutputType; 314Host.Check(_mapper.OutputType == NumberDataViewType.Single, "The output type of the predictor is expected to be float");
Scorers\SchemaBindablePredictorWrapper.cs (1)
65return valueMapper.OutputType;
Microsoft.ML.Ensemble (9)
OutputCombiners\BaseStacking.cs (2)
119if (ivm.OutputType.RawType != typeof(TOutput)) 120throw Contracts.Except("Stacking predictor output type is unsupported: {0}", ivm.OutputType);
PipelineEnsemble.cs (2)
629var classCount = vm.OutputType.GetVectorSize(); 637if (vm.OutputType.GetVectorSize() != classCount)
Trainer\EnsembleDistributionModelParameters.cs (1)
109&& mapper.OutputType == NumberDataViewType.Single
Trainer\EnsembleModelParameters.cs (1)
100&& mapper.OutputType == NumberDataViewType.Single)
Trainer\Multiclass\EnsembleMulticlassModelParameters.cs (3)
123Host.Assert(_mappers[i].OutputType.GetVectorSize() > 0); 146Host.Check(predictions[i].Length == _mappers[i].OutputType.GetVectorSize()); 159&& mapper.OutputType is VectorDataViewType outVectorType
Microsoft.ML.StandardTrainers (3)
Standard\MulticlassClassification\OneVersusAllTrainer.cs (2)
315ivmd.OutputType != NumberDataViewType.Single || 520if (mapper.OutputType != NumberDataViewType.Single)
Standard\MulticlassClassification\PairwiseCouplingTrainer.cs (1)
338if (mapper.OutputType != NumberDataViewType.Single)