1 write to _targets
Microsoft.ML.FastTree (1)
Training\EnsembleCompression\LassoBasedEnsembleCompressor.cs (1)
505
_targets
= new float[_numObservations];
8 references to _targets
Microsoft.ML.FastTree (8)
Training\EnsembleCompression\LassoBasedEnsembleCompressor.cs (8)
212
float targetMean = (float)VectorUtils.GetMean(
_targets
);
215
fixed (float* pVector =
_targets
)
223
float targetStd = (float)Math.Sqrt(VectorUtils.GetDotProduct(
_targets
,
_targets
));
224
VectorUtils.DivideInPlace(
_targets
, targetStd);
228
feature2residualCorrelations[j] = VectorUtils.GetDotProduct(
_targets
, _observations[j]);
511
fixed (float* pTargets =
_targets
)
525
fixed (float* pTargets =
_targets
)