5 references to InputBindingMap
Microsoft.ML.Data (5)
EntryPoints\EntryPointNode.cs (3)
936
bool success =
InputBindingMap
.TryGetValue(paramName, out parameterBindings);
959
if (
InputBindingMap
.ContainsKey(uniqueName))
964
InputBindingMap
.Add(uniqueName, new List<ParameterBinding> { paramBinding });
Transforms\NormalizeUtils.cs (2)
158
var entryPointNode = EntryPointNode.Create(env, "Transforms.NoOperation", new NopTransform.NopInput(), node.Context, node.
InputBindingMap
, node.InputMap, node.OutputMap);
164
var entryPointNode = EntryPointNode.Create(env, "Transforms.MinMaxNormalizer", input, node.Context, node.
InputBindingMap
, node.InputMap, node.OutputMap);