2 writes to XK
Microsoft.ML.FastTree (2)
Training\OptimizationAlgorithms\AcceleratedGradientDescent.cs (2)
28trainingScores.XK = trainingScores.YK; 36trainingScores.XK = xk;
7 references to XK
Microsoft.ML.FastTree (7)
Training\OptimizationAlgorithms\AcceleratedGradientDescent.cs (2)
27var xk = trainingScores.XK; 35trainingScores.YK = trainingScores.XK;
Training\ScoreTracker.cs (5)
130YK = (double[])XK.Clone(); 188double newYK = newXK + coeff * (newXK - XK[doc]); 189XK[doc] = newXK; 215double newYK = newXK + coeff * (newXK - XK[doc]); 216XK[doc] = newXK;