5 references to AddMultWithOffset
Microsoft.ML.Core.Tests (2)
UnitTests\TestVBuffer.cs (2)
540/// Naive version of <see cref="VectorUtils.AddMultWithOffset(in VBuffer{float}, float, ref VBuffer{float}, int)"/>, 643VectorUtils.AddMultWithOffset(in a, c, ref actualDst, offset);
Microsoft.ML.StandardTrainers (3)
Standard\LogisticRegression\LogisticRegression.cs (1)
210VectorUtils.AddMultWithOffset(in feat, mult, ref grad, 1); // Note that 0th L-BFGS weight is for bias.
Standard\LogisticRegression\MulticlassLogisticRegression.cs (1)
269VectorUtils.AddMultWithOffset(in feat, mult, ref grad, start);
Standard\PoissonRegression\PoissonRegression.cs (1)
176VectorUtils.AddMultWithOffset(in feat, mult, ref grad, 1);