4 writes to _impl
Microsoft.ML.StandardTrainers (4)
Standard\MulticlassClassification\OneVersusAllTrainer.cs (4)
362
_impl
= impl;
380
_impl
= new ImplRaw(predictors);
386
_impl
= new ImplDist(predictors);
392
_impl
= new ImplSoftmax(predictors);
13 references to _impl
Microsoft.ML.StandardTrainers (13)
Standard\MulticlassClassification\OneVersusAllTrainer.cs (13)
273
internal ImmutableArray<object> SubModelParameters =>
_impl
.Predictors.Cast<object>().ToImmutableArray();
295
bool ICanSavePfa.CanSavePfa =>
_impl
.CanSavePfa;
363
DistType = new VectorDataViewType(NumberDataViewType.Single,
_impl
.Predictors.Length);
395
DistType = new VectorDataViewType(NumberDataViewType.Single,
_impl
.Predictors.Length);
418
var preds =
_impl
.Predictors;
423
byte[] outputFormula = { (byte)
_impl
.OutputFormula };
436
return
_impl
.SaveAsPfa(ctx, input);
441
get { return
_impl
.InputType; }
453
return (ValueMapper<TIn, TOut>)(Delegate)
_impl
.GetMapper();
461
var preds =
_impl
.Predictors;
481
var preds =
_impl
.Predictors;
496
bool ICanSaveOnnx.CanSaveOnnx(OnnxContext ctx) =>
_impl
.CanSaveOnnx(ctx);
498
bool ISingleCanSaveOnnx.SaveAsOnnx(OnnxContext ctx, string[] outputNames, string featureColumn) =>
_impl
.SaveAsOnnx(ctx, outputNames, featureColumn);