4 writes to _weightsUpdate
Microsoft.ML.StandardTrainers (4)
Standard\Online\LinearSvm.cs (4)
150_weightsUpdate = VBufferUtils.CreateEmpty<float>(numFeatures); 165VBufferUtils.Resize(ref _weightsUpdate, _weightsUpdate.Length, 0); 195VectorUtils.ScaleInto(in feat, currentBiasUpdate, ref _weightsUpdate); 199VectorUtils.AddMult(in feat, currentBiasUpdate, ref _weightsUpdate);
4 references to _weightsUpdate
Microsoft.ML.StandardTrainers (4)
Standard\Online\LinearSvm.cs (4)
165VBufferUtils.Resize(ref _weightsUpdate, _weightsUpdate.Length, 0); 193if (_weightsUpdate.GetValues().Length == 0) 206Contracts.Assert(_weightsUpdate.GetValues().Length == 0); 214FinishBatch(in _weightsUpdate, _weightsUpdateScale);