7 references to CopyTo
Microsoft.ML.Core.Tests (1)
UnitTests\TestVBuffer.cs (1)
737a.CopyTo(ref dst, copyMin, copyLen);
Microsoft.ML.StandardTrainers (4)
Standard\LogisticRegression\LogisticRegression.cs (2)
412CurrentWeights.CopyTo(ref weightsOnly, 1, CurrentWeights.Length - 1); 455CurrentWeights.CopyTo(ref weights, 1, CurrentWeights.Length - 1);
Standard\LogisticRegression\MulticlassLogisticRegression.cs (1)
474weights.CopyTo(ref Weights[i], NumberOfClasses + i * NumberOfFeatures, NumberOfFeatures);
Standard\PoissonRegression\PoissonRegression.cs (1)
192CurrentWeights.CopyTo(ref weights, 1, CurrentWeights.Length - 1);
Microsoft.ML.TimeSeries (2)
SequentialAnomalyDetectionTransformBase.cs (1)
340public void GetSlotNames(ref VBuffer<ReadOnlyMemory<char>> dst) => _slotNames.CopyTo(ref dst, 0, _parent.OutputLength);
SrCnnTransformBase.cs (1)
183public void GetSlotNames(ref VBuffer<ReadOnlyMemory<char>> dst) => _slotNames.CopyTo(ref dst, 0, _parent.OutputLength);