According to my understanding, Keras LSTM cell is similar to Tensorflow
BasicLSTMCell(RNNCell). However, I am looking for the implementation of Tensorflow
LSTMCell(RNNCell) in Keras (LSTMCell : The class uses optional peep-hole connections, optional cell clipping, and an optional projection layer). https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/ops/rnn_cell_impl.py https://research.google.com/pubs/archive/43905.pdf Hasim Sak, Andrew Senior, and Francoise Beaufays. "Long short-term memory recurrent neural network architectures for large scale acoustic modeling." INTERSPEECH, 2014.
I am wondering without writing a custom layer, is there is any way to use this Tensorflow LSTMCell in Keras or is it already available?