1 write to _observations
Microsoft.ML.FastTree (1)
Training\EnsembleCompression\LassoBasedEnsembleCompressor.cs (1)
73
_observations
= new float[_numFeatures][];
12 references to _observations
Microsoft.ML.FastTree (12)
Training\EnsembleCompression\LassoBasedEnsembleCompressor.cs (12)
76
_observations
[t] = new float[_numObservations];
141
fixed (float* pCurObservations =
_observations
[idx])
155
fixed (float* pCurObservations =
_observations
[idx])
195
double mean = VectorUtils.GetMean(
_observations
[j]);
199
fixed (float* pVector =
_observations
[j])
207
featureStds[j] = Math.Sqrt(VectorUtils.GetDotProduct(
_observations
[j],
_observations
[j]));
209
VectorUtils.DivideInPlace(
_observations
[j], (float)featureStds[j]);
228
feature2residualCorrelations[j] = VectorUtils.GetDotProduct(_targets,
_observations
[j]);
328
feature2featureCorrelations[j][numberOfInputs - 1] = VectorUtils.GetDotProduct(
_observations
[j],
_observations
[k]);
501
targetScores[d] +=
_observations
[t][d];