I have some very basic lstm code with tensorflow and python, where my code is
output = tf.nn.rnn(tf.nn.rnn_cell.BasicLSTMCell(10), input_flattened, initial_state=tf.placeholder("float", [None, 20]))
where my input flattened is shape [?, 5, 22501]
I'm getting the error TypeError: inputs must be a sequence
on the state
parameter of the lstm, and I'm ripping my hair out trying to find out why it is giving me this error. Any help would be greatly appreciated.