2 instantiations of LdSvmModelParameters
Microsoft.ML.StandardTrainers (2)
LdSvm\LdSvmModelParameters.cs (1)
153return new LdSvmModelParameters(env, ctx);
LdSvm\LdSvmTrainer.cs (1)
393return new LdSvmModelParameters(Host, w, thetaPrime, theta, _options.Sigma, biasW, biasTheta,
10 references to LdSvmModelParameters
Microsoft.ML.StandardTrainers (10)
LdSvm\LdSvmModelParameters.cs (3)
14[assembly: LoadableClass(typeof(LdSvmModelParameters), null, typeof(SignatureLoadModel), "LDSVM binary predictor", LdSvmModelParameters.LoaderSignature)] 36loaderAssemblyName: typeof(LdSvmModelParameters).Assembly.FullName);
LdSvm\LdSvmTrainer.cs (7)
66public sealed class LdSvmTrainer : TrainerEstimatorBase<BinaryPredictionTransformer<LdSvmModelParameters>, LdSvmModelParameters> 189private protected override LdSvmModelParameters TrainModelCore(TrainContext trainContext) 253private LdSvmModelParameters TrainCore(IChannel ch, RoleMappedData trainingData, int numLeaf, int numFeatures) 665private protected override BinaryPredictionTransformer<LdSvmModelParameters> MakeTransformer(LdSvmModelParameters model, DataViewSchema trainSchema) 666=> new BinaryPredictionTransformer<LdSvmModelParameters>(Host, model, trainSchema, _options.FeatureColumnName);