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

Method call

tensorflow/python/keras/engine/base_layer.py:389–399  ·  view source on GitHub ↗

This is where the layer's logic lives. Arguments: inputs: Input tensor, or list/tuple of input tensors. **kwargs: Additional keyword arguments. Returns: A tensor or list/tuple of tensors.

(self, inputs, **kwargs)

Source from the content-addressed store, hash-verified

387
388 @doc_controls.for_subclass_implementers
389 def call(self, inputs, **kwargs): # pylint: disable=unused-argument
390 """This is where the layer's logic lives.
391
392 Arguments:
393 inputs: Input tensor, or list/tuple of input tensors.
394 **kwargs: Additional keyword arguments.
395
396 Returns:
397 A tensor or list/tuple of tensors.
398 """
399 return inputs
400
401 @doc_controls.for_subclass_implementers
402 def add_weight(self,

Callers 1

__call__Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected