8 references to ScaleInto
Microsoft.ML.Core.Tests (1)
UnitTests\TestVBuffer.cs (1)
670VectorUtils.ScaleInto(in a, c, ref actualDst);
Microsoft.ML.Data (1)
Deprecated\Vector\VBufferMathUtils.cs (1)
229ScaleInto(in b, c, ref dst);
Microsoft.ML.StandardTrainers (6)
Optimizer\Optimizer.cs (1)
318VectorUtils.ScaleInto(in _grad, -1, ref _dir);
Optimizer\SgdOptimizer.cs (2)
324VectorUtils.ScaleInto(in _grad, -1, ref _dir); 350VectorUtils.ScaleInto(in _newGrad, -1, ref _dir);
Standard\Online\AveragedLinear.cs (2)
211VectorUtils.ScaleInto(in TotalWeights, 1 / (float)NumWeightUpdates, ref Weights); 270VectorUtils.ScaleInto(in TotalWeights, 1 / (float)NumWeightUpdates, ref Weights);
Standard\Online\LinearSvm.cs (1)
195VectorUtils.ScaleInto(in feat, currentBiasUpdate, ref _weightsUpdate);