2 writes to _theta
Microsoft.ML.StandardTrainers (2)
LdSvm\LdSvmModelParameters.cs (2)
79_theta = theta; 115_theta = LoadVBufferArray(ctx, _numLeaf - 1, numFeatures);
8 references to _theta
Microsoft.ML.StandardTrainers (8)
LdSvm\LdSvmModelParameters.cs (8)
135Host.Assert(_theta.Length == _numLeaf - 1); 136Host.Assert(_theta.All(v => v.IsDense)); 137Host.Assert(_theta.All(v => v.Length == _theta[0].Length)); 141Host.Assert((_w[0].Length > 0) && (_w[0].Length == _thetaPrime[0].Length) && (_w[0].Length == _theta[0].Length)); // numFeatures 190Host.Assert(_theta.Length == _numLeaf - 1); 191SaveVBufferArray(ctx, _theta); 256childIndicator = VectorUtils.DotProduct(in _theta[current], in src) + _biasTheta[current];