2 implementations of SaveAsPfa
Microsoft.ML.Data (2)
Prediction\Calibrator.cs (2)
345JToken ISingleCanSavePfa.SaveAsPfa(BoundPfaContext ctx, JToken input) 1783JToken ISingleCanSavePfa.SaveAsPfa(BoundPfaContext ctx, JToken input)
7 references to SaveAsPfa
Microsoft.ML.Data (5)
Model\Pfa\ICanSavePfa.cs (1)
104/// The call for distribution predictors. Unlike <see cref="ISingleCanSavePfa.SaveAsPfa"/>,
Prediction\Calibrator.cs (3)
352return mapper.SaveAsPfa(ctx, input); 363JToken scoreExpression = ((ISingleCanSavePfa)this).SaveAsPfa(ctx, input); 372JToken probExpression = calibrator.SaveAsPfa(ctx, scoreToken);
Scorers\SchemaBindablePredictorWrapper.cs (1)
336var scoreToken = mapper.SaveAsPfa(ctx, featureToken);
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.