8 references to GetInputVariable
Microsoft.ML.EntryPoints (8)
CrossValidationMacro.cs (2)
173
transformModelVarName = node.
GetInputVariable
(nameof(input.TransformModel));
181
var inputData = node.
GetInputVariable
(nameof(splitArgs.Data));
OneVersusAllMacro.cs (3)
64
inputMap.Add(paramBinding, node.
GetInputVariable
(nameof(input.TrainingData)));
96
if (entryPointNode.
GetInputVariable
(nameof(input.TrainingData)) is VariableBinding vb)
180
inputMap.Add(paramBinding, node.
GetInputVariable
(nameof(input.TrainingData)));
TrainTestMacro.cs (3)
128
transformModelVarName = node.
GetInputVariable
(nameof(input.TransformModel));
132
var trainingVar = node.
GetInputVariable
(nameof(input.TrainingData));
156
var testingVar = node.
GetInputVariable
(nameof(input.TestingData));