Searched defs:LSTMCell (Results 1 - 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/compiler/tests/
H A Dlstm.py47 def LSTMCell(weights, m_prev, c_prev, x, pad): function
113 m, c = LSTMCell(weights, m, c, x_seq[seq], pad_seq[seq])
/external/tensorflow/tensorflow/python/keras/_impl/keras/layers/
H A Drecurrent.py52 keras.layers.LSTMCell(output_dim),
53 keras.layers.LSTMCell(output_dim),
54 keras.layers.LSTMCell(output_dim),
1681 @tf_export('keras.layers.LSTMCell')
1682 class LSTMCell(Layer): class in inherits:Layer
1751 super(LSTMCell, self).__init__(**kwargs)
1963 base_config = super(LSTMCell, self).get_config()
2066 cell = LSTMCell(
/external/tensorflow/tensorflow/python/ops/
H A Drnn_cell_impl.py487 For advanced models, please use the full @{tf.nn.rnn_cell.LSTMCell}
600 @tf_export("nn.rnn_cell.LSTMCell")
601 class LSTMCell(LayerRNNCell): class in inherits:LayerRNNCell
665 super(LSTMCell, self).__init__(_reuse=reuse, name=name)
/external/tensorflow/tensorflow/python/keras/layers/
H A D__init__.py144 from tensorflow.python.keras._impl.keras.layers.recurrent import LSTMCell namespace
/external/tensorflow/tensorflow/python/framework/
H A Dfunction_test.py1323 def LSTMCell(cls, x, mprev, cprev, weights): member in class:UnrollLSTMTest
1343 cell = UnrollLSTMTest.LSTMCell

Completed in 173 milliseconds