|
|
|
|
|
by albertzeyer
3876 days ago
|
|
I'm looking at the RNN implementation right now (https://github.com/tensorflow/tensorflow/blob/master/tensorf...). It looks like the loop over the time frames is actually in Python itself. for time, input_ in enumerate(inputs): ...
This confuses me a bit. Maybe the shape is not symbolic but must be fixed.I also haven't seen some theano.scan equivalent. Which is not needed in many cases when you know the shape in advance. |
|
It seems like in TensorFlow you can say:
at this point, states is a list of symbolic tensors. now if you query for their value: you get what you would naively expect. I don't think that would work in Theano. Cool.