I run the sample code recurrent_network.py.
I wish print all the x, it's a placehoder. In the function: RNN(x, weights, biases):
What can I do?
Key point:
x = tf.transpose(x, [1, 0, 2])
# Reshaping to (n_steps*batch_size, n_input)
x = tf.reshape(x, [-1, n_input])
# Split to get a list of 'n_steps' tensors of shape (batch_size, n_input)
x = tf.split(0, n_steps, x)