1 write to CompressedWeights
Microsoft.ML.FastTree (1)
Training\EnsembleCompression\LassoFit.cs (1)
41
CompressedWeights
= VectorUtils.AllocateDoubleMatrix(numberOfLambdas, maxAllowedFeaturesAlongPath);
8 references to CompressedWeights
Microsoft.ML.FastTree (8)
Training\EnsembleCompression\LassoBasedEnsembleCompressor.cs (7)
403
fit.
CompressedWeights
[iteration - 1][ii] = pActiveWeights[pIndices[ii]];
419
if (fit.
CompressedWeights
[iteration - 1][j] != 0.0)
438
fit.
CompressedWeights
[k][l] = targetStd * fit.
CompressedWeights
[k][l] / featureStds[fit.Indices[l]];
439
if (fit.
CompressedWeights
[k][l] != 0)
447
product += fit.
CompressedWeights
[k][i] * featureMeans[fit.Indices[i]];
468
double weight = fit.
CompressedWeights
[solutionIdx][i];
Training\EnsembleCompression\LassoFit.cs (1)
55
weights[Indices[i]] =
CompressedWeights
[lambdaIdx][i];