1 write to Inputs
Microsoft.ML.TensorFlow (1)
TensorflowTransform.cs (1)
301Inputs = inputColumnNames;
16 references to Inputs
Microsoft.ML.TensorFlow (16)
TensorflowTransform.cs (16)
306(TFInputTypes, TFInputShapes, TFInputOperations) = GetInputInfo(Host, Session, Inputs, batchSize); 308TFInputNodes = new TF_Output[Inputs.Length]; 495Host.AssertNonEmpty(Inputs); 496ctx.Writer.Write(Inputs.Length); 497foreach (var colName in Inputs) 547_inputColIndices = new int[_parent.Inputs.Length]; 548_isInputVector = new bool[_parent.Inputs.Length]; 549_fullySpecifiedShapes = new TensorShape[_parent.Inputs.Length]; 550for (int i = 0; i < _parent.Inputs.Length; i++) 552if (!inputSchema.TryGetColumnIndex(_parent.Inputs[i], out _inputColIndices[i])) 553throw Host.ExceptSchemaMismatch(nameof(InputSchema), "source", _parent.Inputs[i]); 562throw Host.ExceptSchemaMismatch(nameof(inputSchema), "input", _parent.Inputs[i], expectedType.ToString(), type.ToString()); 597throw Contracts.Except($"Input shape mismatch: Input '{_parent.Inputs[i]}' has shape {originalShape.ToString()}, but input data is of length {typeValueCount}."); 616throw Contracts.Except($"Input shape mismatch: Input '{_parent.Inputs[i]}' has shape {originalShape.ToString()}, but input data is of length {typeValueCount}."); 756Runner runner = new Runner(_parent.Session, _parent.Inputs.ToArray(), _parent.Outputs.ToArray()); 759for (int i = 0; i < _parent.Inputs.Length; i++)