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