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)
303
tfInputs = new TF_Output[
_tfInputNodes
.Length + 2]; //Inputs + Label + Learning Rate.
305
tfInputs = new TF_Output[
_tfInputNodes
.Length + 1]; //Inputs + Label.
307
Array.Copy(
_tfInputNodes
, tfInputs,
_tfInputNodes
.Length);
309
tfInputs[
_tfInputNodes
.Length] = new TF_Output(labelOp, labelOpIdx);
311
tfInputs[
_tfInputNodes
.Length + 1] = new TF_Output(lr.Item1, lr.Item2);
555
_tfInputNodes
[index] = new TF_Output(_tfInputOperations[index].Item1, _tfInputOperations[index].Item2);