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

Method call

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

Source from the content-addressed store, hash-verified

1387 self.input_spec = [InputSpec(ndim=3)]
1388
1389 def call(self, inputs, mask=None, training=None, initial_state=None):
1390 self.cell.reset_dropout_mask()
1391 self.cell.reset_recurrent_dropout_mask()
1392 return super(SimpleRNN, self).call(
1393 inputs, mask=mask, training=training, initial_state=initial_state)
1394
1395 @property
1396 def units(self):

Callers

nothing calls this directly

Calls 3

reset_dropout_maskMethod · 0.80
callMethod · 0.45

Tested by

no test coverage detected