I can not understand the result of the tf.nn.dynamic_rnn tensorflow function. The document simply indicates the size of the output file, but it does not say what each row / column means. From the documentation:
outputs : RNN Tensor output.
If time_major == False (default), it will be a Tensor the form: [batch_size, max_time, cell.output_size] .
If time_major == True, this will be Tensor : [max_time, batch_size, cell.output_size] .
Note that if cell.output_size is a (possibly nested) set of integers or TensorShape , then outputs will be a tuple having the same structure as cell.output_size containing tensors having shapes corresponding to the form data in cell.output_size .
State : final state. If cell.state_size is int, it will be of the form [batch_size, cell.state_size] . If this
TensorShape , this will take the form [batch_size] + cell.state_size .
If it is a (possibly nested) set of int or TensorShape , it will be a tuple that has the appropriate shapes.
The outputs tensor is a three-dimensional matrix, but what does each row / column represent?
tensorflow
Mithun
source share