1 implementation of ICommandLineComponentFactory
Microsoft.ML.Core (1)
CommandLine\CmdParser.cs (1)
2334private abstract class ComponentFactory : ICommandLineComponentFactory
11 references to ICommandLineComponentFactory
Microsoft.ML.Core (8)
CommandLine\CmdParser.cs (8)
1141public static ICommandLineComponentFactory CreateComponentFactory( 1551out ICommandLineComponentFactory factory)) 1582out ICommandLineComponentFactory factory)) 1617out ICommandLineComponentFactory factory)) 2284public static ICommandLineComponentFactory CreateComponentFactory( 2290if (!TryCreateComponentFactory(factoryType, signatureType, name, settings, out ICommandLineComponentFactory factory)) 2303out ICommandLineComponentFactory factory) 2326factory = (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]);