2 instantiations of LdSvmModelParameters
Microsoft.ML.StandardTrainers (2)
LdSvm\LdSvmModelParameters.cs (1)
153
return new
LdSvmModelParameters
(env, ctx);
LdSvm\LdSvmTrainer.cs (1)
393
return 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)]
36
loaderAssemblyName: typeof(
LdSvmModelParameters
).Assembly.FullName);
LdSvm\LdSvmTrainer.cs (7)
66
public sealed class LdSvmTrainer : TrainerEstimatorBase<BinaryPredictionTransformer<
LdSvmModelParameters
>,
LdSvmModelParameters
>
189
private protected override
LdSvmModelParameters
TrainModelCore(TrainContext trainContext)
253
private
LdSvmModelParameters
TrainCore(IChannel ch, RoleMappedData trainingData, int numLeaf, int numFeatures)
665
private protected override BinaryPredictionTransformer<
LdSvmModelParameters
> MakeTransformer(
LdSvmModelParameters
model, DataViewSchema trainSchema)
666
=> new BinaryPredictionTransformer<
LdSvmModelParameters
>(Host, model, trainSchema, _options.FeatureColumnName);