Input is the interface for specifying inputs to an operation being added to a Graph. Operations can have multiple inputs, each of which could be either a tensor produced by another operation (an Output object), or a list of tensors produced by other operations (an OutputList). Thus, this interface
| 205 | // |
| 206 | // See OpSpec.Input for more information. |
| 207 | type Input interface { |
| 208 | // Unexported to preclude implementations outside this package. |
| 209 | canBeAnInput() |
| 210 | } |
| 211 | |
| 212 | // OutputList represents a list of Outputs that can be provided as input to |
| 213 | // another operation. |
nothing calls this directly
no outgoing calls
no test coverage detected