3 overrides of CreateModel
Microsoft.ML.StandardTrainers (3)
Standard\SdcaBinary.cs (3)
2313private protected override CalibratedModelParametersBase<LinearBinaryModelParameters, PlattCalibrator> CreateModel(VBuffer<float> weights, float bias) 2397private protected override LinearBinaryModelParameters CreateModel(VBuffer<float> weights, float bias) 2452private protected override IPredictorWithFeatureWeights<float> CreateModel(VBuffer<float> weights, float bias)
4 references to CreateModel
Microsoft.ML.StandardTrainers (4)
Standard\SdcaBinary.cs (4)
2200return CreateModel(weights, bias); 2204/// <see cref="CreateModel(VBuffer{float}, float)"/> implements a mechanism to craft a typed model out from linear weights and a bias. 2206/// Derived classes should implement <see cref="CreateModel(VBuffer{float}, float)"/> because different trainers may produce different 2215/// A helper function used to create <see cref="LinearBinaryModelParameters"/> in implementations of <see cref="CreateModel(VBuffer{float}, float)"/>.