1 interface inheriting from ISingleCanSavePfa
Microsoft.ML.Data (1)
Model\Pfa\ICanSavePfa.cs (1)
101internal interface IDistCanSavePfa : ISingleCanSavePfa, IValueMapperDist
1 implementation of ISingleCanSavePfa
Microsoft.ML.Data (1)
Prediction\Calibrator.cs (1)
1676public sealed class PlattCalibrator : ICalibrator, IParameterMixer, ICanSaveModel, ISingleCanSavePfa, ISingleCanSaveOnnx
15 references to ISingleCanSavePfa
Microsoft.ML.Data (13)
Model\Pfa\ICanSavePfa.cs (1)
104/// The call for distribution predictors. Unlike <see cref="ISingleCanSavePfa.SaveAsPfa"/>,
Prediction\Calibrator.cs (8)
345JToken ISingleCanSavePfa.SaveAsPfa(BoundPfaContext ctx, JToken input) 350Host.Assert(_mapper is ISingleCanSavePfa); 351var mapper = (ISingleCanSavePfa)_mapper; 363JToken scoreExpression = ((ISingleCanSavePfa)this).SaveAsPfa(ctx, input); 365var calibrator = Calibrator as ISingleCanSavePfa; 1783JToken ISingleCanSavePfa.SaveAsPfa(BoundPfaContext ctx, JToken input)
Scorers\SchemaBindablePredictorWrapper.cs (4)
98Contracts.Assert(ValueMapper is ISingleCanSavePfa); 328Contracts.Assert(ValueMapper is ISingleCanSavePfa); 331var mapper = (ISingleCanSavePfa)ValueMapper;
Microsoft.ML.StandardTrainers (2)
Standard\LogisticRegression\MulticlassLogisticRegression.cs (2)
933/// Actual implementation of <see cref="ISingleCanSavePfa.SaveAsPfa(BoundPfaContext, JToken)"/> should happen in derived classes. 969/// Redirect <see cref="ISingleCanSavePfa.SaveAsPfa(BoundPfaContext, JToken)"/> call to the right function.