1 interface inheriting from ISingleCanSavePfa
Microsoft.ML.Data (1)
Model\Pfa\ICanSavePfa.cs (1)
101
internal interface IDistCanSavePfa :
ISingleCanSavePfa
, IValueMapperDist
1 implementation of ISingleCanSavePfa
Microsoft.ML.Data (1)
Prediction\Calibrator.cs (1)
1676
public 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)
345
JToken
ISingleCanSavePfa
.SaveAsPfa(BoundPfaContext ctx, JToken input)
350
Host.Assert(_mapper is
ISingleCanSavePfa
);
351
var
mapper = (
ISingleCanSavePfa
)_mapper;
363
JToken scoreExpression = ((
ISingleCanSavePfa
)this).SaveAsPfa(ctx, input);
365
var
calibrator = Calibrator as
ISingleCanSavePfa
;
1783
JToken
ISingleCanSavePfa
.SaveAsPfa(BoundPfaContext ctx, JToken input)
Scorers\SchemaBindablePredictorWrapper.cs (4)
98
Contracts.Assert(ValueMapper is
ISingleCanSavePfa
);
328
Contracts.Assert(ValueMapper is
ISingleCanSavePfa
);
331
var
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.