1 implementation of ICommandLineComponentFactory
Microsoft.ML.Core (1)
CommandLine\CmdParser.cs (1)
2329private abstract class ComponentFactory : ICommandLineComponentFactory
11 references to ICommandLineComponentFactory
Microsoft.ML.Core (8)
CommandLine\CmdParser.cs (8)
1140public static ICommandLineComponentFactory CreateComponentFactory( 1550out ICommandLineComponentFactory factory)) 1581out ICommandLineComponentFactory factory)) 1616out ICommandLineComponentFactory factory)) 2279public static ICommandLineComponentFactory CreateComponentFactory( 2285if (!TryCreateComponentFactory(factoryType, signatureType, name, settings, out ICommandLineComponentFactory factory)) 2298out ICommandLineComponentFactory factory) 2321factory = (ICommandLineComponentFactory)Activator.CreateInstance(
Microsoft.ML.Data (1)
Utilities\ComponentCreation.cs (1)
283var factory = CmdParser.CreateComponentFactory(factoryType, signatureType, settings);
Microsoft.ML.Predictor.Tests (2)
CmdLine\CmdLineReverseTest.cs (2)
90var factory = CmdParser.CreateComponentFactory(typeof(IComponentFactory<ICalibratorTrainer>), typeof(SignatureCalibrator), cls.LoadNames[0]); 96var factory = CmdParser.CreateComponentFactory(typeof(IComponentFactory<ICalibratorTrainer>), typeof(SignatureCalibrator), component.Aliases[0]);