-
Notifications
You must be signed in to change notification settings - Fork 302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Learning of hidden state t=0 #8
Open
peroyose
wants to merge
354
commits into
pascanur:master
Choose a base branch
from
lisa-groundhog:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…parate Conflicts: experiments/rnnencdec/encdec.py
Numpy compat
Just a typo at line 831 additioanl->additional.
Typo at cost_layers.py at line 831
Tiny cleanups
First stab at setup.py
Import scan from theano instead of theano.sandbox.
Update README.md
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Dear all,
to my knowledge it's at the moment not possible to train the initial state of a recurrent layer (rec_layer.py).
For same applications this is helpfull and quite common. Therefore this pull request.
Thanks in advance for your answer,
Christian
P.S.:
I try to implement this very roughly in the "class RecurrentLayer". But it seems not so easy as expected. I introduced a new parameter (added to self.params), but the problem is training with mini-batches. Broadcasting seems not to work but mayby I made other mistakes. The function does't compile
initialization
in method fprop:
I got the following error:
ValueError: When compiling the inner function of scan the following error has been encountered: The initial state (outputs_info in scan nomenclature) of variable IncSubtensor{Set;:int64:}.0 (argument number 4) has dtype float32 and 2 dimension(s), while the result of the inner function for this output has dtype float32 and 2 dimension(s). This could happen if the inner graph of scan results in an upcast or downcast. Please make sure that you use dtypes consistently
I don't think that dtype is the problem, because the TT.alloc (zero vector as init state) has the same dtype, so I'm lost. What's your strategy to debug this kind of problems?
Thanks