NumInputs returns the number of inputs of op.
()
| 73 | |
| 74 | // NumInputs returns the number of inputs of op. |
| 75 | func (op *Operation) NumInputs() int { |
| 76 | return int(C.TF_OperationNumInputs(op.c)) |
| 77 | } |
| 78 | |
| 79 | // Output represents one of the outputs of an operation in the graph. Has a |
| 80 | // DataType (and eventually a Shape). May be passed as an input argument to a |
no outgoing calls