You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You would need to use import scan from theano.scan_module instead of sandbox. Then use outputs_info instead of states, and the syntax is a bit different in that you only specify the initial state, instead of the whole buffer.
Then, you may need to keep only the requested number of steps you want to keep. For instance, for your second state (summaries), you will want to only keep summaries[-1].
I am using theano0.7. I got the following error from the tutorial.
TypeError: scan() got an unexpected keyword argument 'states'
Can anyone kindly help me? Thanks.
file: tutorials/DT_RNN_Tut.py
line: 235
scan for iterating the single-step sampling multiple times
The text was updated successfully, but these errors were encountered: