tf.contrib.rnn.LSTMBlockCell.__init__(num_units, forget_bias=1.0, use_peephole=False)
Initialize the basic LSTM cell.
Args:
-
num_units
: int, The number of units in the LSTM cell. -
forget_bias
: float, The bias added to forget gates (see above). -
use_peephole
: Whether to use peephole connections or not.
Please login to continue.