![]() |
An abstract interface for all classes that represent computations.
Inherits From: TypedObject
Attributes | |
---|---|
type_signature
|
Returns the TFF type of this object (an instance of tff.Type ).
|
Methods
to_building_block
@abc.abstractmethod
to_building_block() ->
tff.framework.ComputationBuildingBlock
Constructs a new tff.framework.ComputationBuildingBlock
.
__call__
@abc.abstractmethod
__call__( *args, **kwargs )
Invokes the computation with the given arguments in the given context.
Args | |
---|---|
*args
|
The positional arguments. |
**kwargs
|
The keyword-based arguments. |
Returns | |
---|---|
The result of invoking the computation, the exact form of which depends on the context. |