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)
135
Host.Assert(
_theta
.Length == _numLeaf - 1);
136
Host.Assert(
_theta
.All(v => v.IsDense));
137
Host.Assert(
_theta
.All(v => v.Length ==
_theta
[0].Length));
141
Host.Assert((_w[0].Length > 0) && (_w[0].Length == _thetaPrime[0].Length) && (_w[0].Length ==
_theta
[0].Length)); // numFeatures
190
Host.Assert(
_theta
.Length == _numLeaf - 1);
191
SaveVBufferArray(ctx,
_theta
);
256
childIndicator = VectorUtils.DotProduct(in
_theta
[current], in src) + _biasTheta[current];