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