2 writes to _biasThetaPrime
Microsoft.ML.StandardTrainers (2)
LdSvm\LdSvmModelParameters.cs (2)
82_biasThetaPrime = biasThetaPrime; 118_biasThetaPrime = ctx.Reader.ReadFloatArray(_numLeaf * 2 - 1);
5 references to _biasThetaPrime
Microsoft.ML.StandardTrainers (5)
LdSvm\LdSvmModelParameters.cs (5)
140Host.Assert(_biasThetaPrime.Length == _numLeaf * 2 - 1); 197Host.Assert(_biasThetaPrime.Length == _numLeaf * 2 - 1); 198ctx.Writer.WriteSinglesNoCount(_biasThetaPrime.AsSpan()); 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])) *