1 implementation of WeaklyTypedSubModel
Microsoft.ML.Data (1)
Prediction\Calibrator.cs (1)
206IPredictorProducing<float> IWeaklyTypedCalibratedModelParameters.WeaklyTypedSubModel => (IPredictorProducing<float>)SubModel;
7 references to WeaklyTypedSubModel
Microsoft.ML.Data (2)
EntryPoints\PredictorModelImpl.cs (1)
116predictor = calibrated.WeaklyTypedSubModel;
EntryPoints\SummarizePredictor.cs (1)
54predictor = calibrated.WeaklyTypedSubModel;
Microsoft.ML.Ensemble (1)
EntryPoints\PipelineEnsemble.cs (1)
41predictor = calibrated.WeaklyTypedSubModel;
Microsoft.ML.FastTree (2)
TreeEnsemble\TreeEnsembleCombiner.cs (1)
58predictor = calibrated.WeaklyTypedSubModel;
TreeEnsembleFeaturizer.cs (1)
650predictor = calibrated.WeaklyTypedSubModel;
Microsoft.ML.StandardTrainers (2)
Standard\SdcaBinary.cs (1)
76var linInitPred = (initPred as IWeaklyTypedCalibratedModelParameters)?.WeaklyTypedSubModel as LinearModelParameters;
Standard\StochasticTrainerBase.cs (1)
38var linInitPred = (initPred as IWeaklyTypedCalibratedModelParameters)?.WeaklyTypedSubModel as LinearModelParameters;