1 write to _tfInputNodes
Microsoft.ML.Vision (1)
DnnRetrainTransform.cs (1)
551_tfInputNodes = new TF_Output[_inputs.Length];
7 references to _tfInputNodes
Microsoft.ML.Vision (7)
DnnRetrainTransform.cs (7)
303tfInputs = new TF_Output[_tfInputNodes.Length + 2]; //Inputs + Label + Learning Rate. 305tfInputs = new TF_Output[_tfInputNodes.Length + 1]; //Inputs + Label. 307Array.Copy(_tfInputNodes, tfInputs, _tfInputNodes.Length); 309tfInputs[_tfInputNodes.Length] = new TF_Output(labelOp, labelOpIdx); 311tfInputs[_tfInputNodes.Length + 1] = new TF_Output(lr.Item1, lr.Item2); 555_tfInputNodes[index] = new TF_Output(_tfInputOperations[index].Item1, _tfInputOperations[index].Item2);