1 interface inheriting from ITrainer
Microsoft.ML.Core (1)
Prediction\ITrainer.cs (1)
71
internal interface ITrainer<out TPredictor> :
ITrainer
6 references to ITrainer
Microsoft.ML.Core (5)
Prediction\IPredictor.cs (1)
12
/// <see cref="
ITrainer
"/> and <see cref="IPredictor"/> it is still useful, but for things based on
Prediction\ITrainer.cs (2)
87
/// Equivalent to calling <see cref="
ITrainer
.Train(TrainContext)"/>
93
public static IPredictor Train(this
ITrainer
trainer, RoleMappedData trainData)
Prediction\TrainContext.cs (2)
12
/// into <see cref="ITrainer{TPredictor}.Train(TrainContext)"/> or <see cref="
ITrainer
.Train(TrainContext)"/>.
39
/// The initial predictor, for incremental training. Note that if a <see cref="
ITrainer
"/> implementor
Microsoft.ML.Data (1)
Transforms\TrainAndScoreTransformer.cs (1)
173
/// <param name="trainer">The <see cref="
ITrainer
"/> object i.e. the learning algorithm that will be used for training the model.</param>