11 references to ApplyWith
Microsoft.ML.Core (3)
Utilities\VBufferUtils.cs (3)
584/// The actual implementation of <see cref="ApplyWith"/> and 1120/// <see cref="ApplyWith{TSrc,TDst}"/> and <see cref="ApplyWithEitherDefined{TSrc,TDst}"/>. Post-operation, 1123/// <seealso cref="ApplyWith{TSrc,TDst}"/>
Microsoft.ML.Core.Tests (2)
UnitTests\TestVBuffer.cs (2)
321/// A trivial inefficient implementation equivalent to <see cref="VBufferUtils.ApplyWith"/>. 361VBufferUtils.ApplyWith(in a, ref b, manip);
Microsoft.ML.Data (4)
Deprecated\Vector\VBufferMathUtils.cs (2)
157VBufferUtils.ApplyWith(in src, ref dst, (int i, float v1, ref float v2) => v2 += v1); 185VBufferUtils.ApplyWith(in src, ref dst, (int i, float v1, ref float v2) => v2 += c * v1);
Evaluators\QuantileRegressionEvaluator.cs (2)
237VBufferUtils.ApplyWith(in score, ref loss, lossFn); 435VBufferUtils.ApplyWith(in l1, ref dst, sqr);
Microsoft.ML.StandardTrainers (2)
Optimizer\L1Optimizer.cs (2)
170VBufferUtils.ApplyWith(in _x, ref _newX, 214VBufferUtils.ApplyWith(in _steepestDescDir, ref _dir,