2 writes to _meanProjected
Microsoft.ML.PCA (2)
PcaTrainer.cs (2)
458
_meanProjected
= new float[rank];
506
_meanProjected
= new float[_rank];
4 references to _meanProjected
Microsoft.ML.PCA (4)
PcaTrainer.cs (4)
463
_meanProjected
[i] = VectorUtils.DotProduct(in _eigenVectors[i], in mean);
512
_meanProjected
[i] = VectorUtils.DotProduct(in _eigenVectors[i], in _mean);
573
foreach (var value in
_meanProjected
)
647
float component = VectorUtils.DotProduct(in _eigenVectors[i], in src) -
_meanProjected
[i];