4 references to DotProductWithOffset
Microsoft.ML.StandardTrainers (4)
Standard\LogisticRegression\LogisticRegression.cs (2)
195float score = bias + VectorUtils.DotProductWithOffset(in x, 1, in feat); 349var score = bias + VectorUtils.DotProductWithOffset(in CurrentWeights, 1, in cursor.Features);
Standard\LogisticRegression\MulticlassLogisticRegression.cs (1)
254scores[c] = bias + VectorUtils.DotProductWithOffset(in x, start, in feat);
Standard\PoissonRegression\PoissonRegression.cs (1)
171float dot = VectorUtils.DotProductWithOffset(in x, 1, in feat) + bias;