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)
132Host.Assert(_thetaPrime.Length == _numLeaf * 2 - 1); 133Host.Assert(_thetaPrime.All(v => v.IsDense)); 134Host.Assert(_thetaPrime.All(v => v.Length == _thetaPrime[0].Length)); 141Host.Assert((_w[0].Length > 0) && (_w[0].Length == _thetaPrime[0].Length) && (_w[0].Length == _theta[0].Length)); // numFeatures 188Host.Assert(_thetaPrime.Length == _numLeaf * 2 - 1); 189SaveVBufferArray(ctx, _thetaPrime); 254score += Math.Tanh(_sigma * (VectorUtils.DotProduct(in _thetaPrime[current], in src) + _biasThetaPrime[current])) * 259score += Math.Tanh(_sigma * (VectorUtils.DotProduct(in _thetaPrime[current], in src) + _biasThetaPrime[current])) *