3 overrides of MakeState
Microsoft.ML.StandardTrainers (3)
Standard\Online\AveragedPerceptron.cs (1)
212
private protected override TrainStateBase
MakeState
(IChannel ch, int numFeatures, LinearModelParameters predictor)
Standard\Online\LinearSvm.cs (1)
320
private protected override TrainStateBase
MakeState
(IChannel ch, int numFeatures, LinearModelParameters predictor)
Standard\Online\OnlineGradientDescent.cs (1)
181
private protected override TrainStateBase
MakeState
(IChannel ch, int numFeatures, LinearModelParameters predictor)
2 references to MakeState
Microsoft.ML.StandardTrainers (2)
Standard\Online\OnlineLinear.cs (2)
83
/// this, and return the instance via <see cref="
MakeState
(IChannel, int, LinearModelParameters)"/>.
294
var state =
MakeState
(ch, numFeatures, initLinearPred);