1 interface inheriting from ITrainer
Microsoft.ML.Core (1)
66 references to ITrainer
Microsoft.ML.Core (5)
Microsoft.ML.Data (36)
Commands\CrossValidationCommand.cs (6)
31public IComponentFactory<ITrainer> Trainer;
265private RoleMappedData CreateRoleMappedData(IHostEnvironment env, IChannel ch, IDataView data, ITrainer trainer)
351private readonly IComponentFactory<ITrainer> _trainer;
363private readonly Func<IHostEnvironment, IChannel, IDataView, ITrainer, RoleMappedData> _createExamples;
390Func<IHostEnvironment, IChannel, IDataView, ITrainer, RoleMappedData> createExamples,
483ITrainer trainer = _trainer.CreateComponent(host);
Commands\TrainCommand.cs (9)
66public IComponentFactory<ITrainer> Trainer;
89private readonly IComponentFactory<ITrainer> _trainer;
142ITrainer trainer = _trainer.CreateComponent(Host);
211public static void CheckTrainer(IExceptionContext ectx, IComponentFactory<ITrainer> trainer, string dataFile)
246public static IPredictor Train(IHostEnvironment env, IChannel ch, RoleMappedData data, ITrainer trainer,
252public static IPredictor Train(IHostEnvironment env, IChannel ch, RoleMappedData data, ITrainer trainer, RoleMappedData validData,
258private static IPredictor TrainCore(IHostEnvironment env, IChannel ch, RoleMappedData data, ITrainer trainer, RoleMappedData validData,
442public static bool AddNormalizerIfNeeded(IHostEnvironment env, IChannel ch, ITrainer trainer, ref IDataView view, string featureColumn, NormalizeOption autoNorm)
491private static bool AddCacheIfWanted(IHostEnvironment env, IChannel ch, ITrainer trainer, ref RoleMappedData data, bool? cacheData)
Utilities\ComponentCreation.cs (4)
215public static ITrainer CreateTrainer<TArgs>(this IHostEnvironment env, TArgs arguments, out string loadName)
219return CreateCore<ITrainer, TArgs, SignatureTrainer>(env, arguments, out loadName);
222public static ITrainer CreateTrainer(this IHostEnvironment env, string settings, out string loadName)
225return CreateCore<ITrainer>(env, typeof(SignatureTrainer), settings, out loadName);
Microsoft.ML.Ensemble (2)
Microsoft.ML.FastTree (10)
Microsoft.ML.LightGbm (1)
Microsoft.ML.Recommender (2)
Microsoft.ML.ResultProcessor (1)
Microsoft.ML.StandardTrainers (7)
Microsoft.ML.Tests (1)
Microsoft.ML.Transforms (1)