1 write to _options
Microsoft.ML.StandardTrainers (1)
LdSvm\LdSvmTrainer.cs (1)
172
_options
= options;
14 references to _options
Microsoft.ML.StandardTrainers (14)
LdSvm\LdSvmTrainer.cs (14)
197
var numLeaf = 1 <<
_options
.TreeDepth;
246
gamma *= (float)Math.Pow(2.0, iter / (
_options
.NumberOfIterations / 10.0));
275
Data data =
_options
.Cache ?
285
for (int iter = 1; iter <=
_options
.NumberOfIterations; iter++)
292
float etaTW = (float)1.0 / (
_options
.LambdaW * (float)Math.Sqrt(iter + 1));
293
float etaTTheta = (float)1.0 / (
_options
.LambdaTheta * (float)Math.Sqrt(iter + 1));
294
float etaTThetaPrime = (float)1.0 / (
_options
.LambdaThetaprime * (float)Math.Sqrt(iter + 1));
331
localWt[l] = (float)Math.Tanh(
_options
.Sigma * (VectorUtils.DotProduct(in features, in thetaPrime[l]) + biasThetaPrime[l]));
349
int biasUpdateMult =
_options
.UseBias ? 1 : 0;
393
return new LdSvmModelParameters(Host, w, thetaPrime, theta,
_options
.Sigma, biasW, biasTheta,
394
biasThetaPrime,
_options
.TreeDepth);
441
if (
_options
.UseBias)
457
if (
_options
.UseBias)
666
=> new BinaryPredictionTransformer<LdSvmModelParameters>(Host, model, trainSchema,
_options
.FeatureColumnName);