2 writes to _thetaPrime
Microsoft.ML.StandardTrainers (2)
LdSvm\LdSvmModelParameters.cs (2)
78
_thetaPrime
= thetaPrime;
114
_thetaPrime
= LoadVBufferArray(ctx, _numLeaf * 2 - 1, numFeatures);
9 references to _thetaPrime
Microsoft.ML.StandardTrainers (9)
LdSvm\LdSvmModelParameters.cs (9)
132
Host.Assert(
_thetaPrime
.Length == _numLeaf * 2 - 1);
133
Host.Assert(
_thetaPrime
.All(v => v.IsDense));
134
Host.Assert(
_thetaPrime
.All(v => v.Length ==
_thetaPrime
[0].Length));
141
Host.Assert((_w[0].Length > 0) && (_w[0].Length ==
_thetaPrime
[0].Length) && (_w[0].Length == _theta[0].Length)); // numFeatures
188
Host.Assert(
_thetaPrime
.Length == _numLeaf * 2 - 1);
189
SaveVBufferArray(ctx,
_thetaPrime
);
254
score += Math.Tanh(_sigma * (VectorUtils.DotProduct(in
_thetaPrime
[current], in src) + _biasThetaPrime[current])) *
259
score += Math.Tanh(_sigma * (VectorUtils.DotProduct(in
_thetaPrime
[current], in src) + _biasThetaPrime[current])) *