MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / Input

Interface Input

tensorflow/go/operation.go:207–210  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

205//
206// See OpSpec.Input for more information.
207type 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.

Callers

nothing calls this directly

Implementers 1

Outputtensorflow/go/operation.go

Calls

no outgoing calls

Tested by

no test coverage detected