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