1 write to ArgumentType
Microsoft.ML.Core (1)
ComponentModel\ComponentCatalog.cs (1)
433
ArgumentType
= argumentType;
7 references to ArgumentType
Microsoft.ML.Core (4)
CommandLine\CmdParser.cs (1)
660
var activator = Activator.CreateInstance(component.
ArgumentType
);
ComponentModel\ComponentCatalog.cs (2)
854
component = _components.FirstOrDefault(x => x.
ArgumentType
== argumentType);
865
component = _components.FirstOrDefault(x => x.InterfaceType == interfaceType && x.
ArgumentType
== argumentType);
Data\ServerChannel.cs (1)
185
IServerFactory factory = (IServerFactory)Activator.CreateInstance(component.
ArgumentType
);
Microsoft.ML.Data (1)
EntryPoints\InputBuilder.cs (1)
561
var inputBuilder = new InputBuilder(ectx, component.
ArgumentType
, catalog);
Microsoft.ML.EntryPoints (2)
JsonUtils\JsonManifestUtils.cs (2)
110
result[FieldNames.Settings] = BuildInputManifest(ectx, componentInfo.
ArgumentType
, catalog);
467
ectx.Assert(componentInfo.
ArgumentType
== type);