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

Method call

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

Source from the content-addressed store, hash-verified

2543 self.input_spec = [InputSpec(ndim=3)]
2544
2545 def call(self, inputs, mask=None, training=None, initial_state=None):
2546 self.cell.reset_dropout_mask()
2547 self.cell.reset_recurrent_dropout_mask()
2548 return super(LSTM, self).call(
2549 inputs, mask=mask, training=training, initial_state=initial_state)
2550
2551 @property
2552 def units(self):

Callers

nothing calls this directly

Calls 3

reset_dropout_maskMethod · 0.80
callMethod · 0.45

Tested by

no test coverage detected