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

Method call

tensorflow/python/keras/layers/recurrent.py:1918–1922  ·  view source on GitHub ↗
(self, inputs, mask=None, training=None, initial_state=None)

Source from the content-addressed store, hash-verified

1916 self.input_spec = [InputSpec(ndim=3)]
1917
1918 def call(self, inputs, mask=None, training=None, initial_state=None):
1919 self.cell.reset_dropout_mask()
1920 self.cell.reset_recurrent_dropout_mask()
1921 return super(GRU, self).call(
1922 inputs, mask=mask, training=training, initial_state=initial_state)
1923
1924 @property
1925 def units(self):

Callers

nothing calls this directly

Calls 3

reset_dropout_maskMethod · 0.80
callMethod · 0.45

Tested by

no test coverage detected