1 write to Indices
Microsoft.ML.FastTree (1)
Training\EnsembleCompression\LassoFit.cs (1)
42Indices = new int[maxAllowedFeaturesAlongPath];
5 references to Indices
Microsoft.ML.FastTree (5)
Training\EnsembleCompression\LassoBasedEnsembleCompressor.cs (4)
278fixed (int* pIndices = fit.Indices) 438fit.CompressedWeights[k][l] = targetStd * fit.CompressedWeights[k][l] / featureStds[fit.Indices[l]]; 447product += fit.CompressedWeights[k][i] * featureMeans[fit.Indices[i]]; 471InternalRegressionTree tree = originalEnsemble.GetTreeAt(fit.Indices[i]);
Training\EnsembleCompression\LassoFit.cs (1)
55weights[Indices[i]] = CompressedWeights[lambdaIdx][i];