1 write to Outputs
Microsoft.ML.TensorFlow (1)
TensorflowTransform.cs (1)
302Outputs = outputColumnNames;
14 references to Outputs
Microsoft.ML.TensorFlow (14)
TensorflowTransform.cs (14)
305(TFOutputTypes, OutputTypes, TFOutputOperations) = GetOutputInfo(Host, Session, Outputs, treatOutputAsBatched); 309TFOutputNodes = new TF_Output[Outputs.Length]; 500Host.AssertNonEmpty(Outputs); 501ctx.Writer.Write(Outputs.Length); 502foreach (var colName in Outputs) 645var activeOutputColNames = _parent.Outputs.Where((x, i) => activeOutput(i)).ToArray(); 709var tensor = outputCache.Outputs[_parent.Outputs[iinfo]]; 722var tensor = outputCache.Outputs[_parent.Outputs[iinfo]]; 737var tensor = outputCache.Outputs[_parent.Outputs[iinfo]]; 756Runner runner = new Runner(_parent.Session, _parent.Inputs.ToArray(), _parent.Outputs.ToArray()); 781return col => Enumerable.Range(0, _parent.Outputs.Length).Any(i => activeOutput(i)) && _inputColIndices.Any(i => i == col); 786var info = new DataViewSchema.DetachedColumn[_parent.Outputs.Length]; 787for (int i = 0; i < _parent.Outputs.Length; i++) 788info[i] = new DataViewSchema.DetachedColumn(_parent.Outputs[i], _parent.OutputTypes[i], null);