tf.nn.rnn_cell.BasicRNNCell.__call__(inputs, state, scope=None)
Most basic RNN: output = new_state = activation(W * input + U * state + B).
tf.nn.rnn_cell.BasicRNNCell.__call__(inputs, state, scope=None)
Most basic RNN: output = new_state = activation(W * input + U * state + B).
Please login to continue.