-
Notifications
You must be signed in to change notification settings - Fork 311
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
Implementing a Convolutional Rec Net #159
Comments
Hi Girish, Try something like : nn.Sequential() Regards, Nicholas Léonard On Mon, Mar 14, 2016 at 6:14 AM, Girish Varma [email protected]
|
Hi Nicholas, Is there a way to make the rnn run on the same input, for time steps which depends on the target? I will be grateful for any suggestions. |
@geevi The best way to do that would be to pad your targets so that they all have the same length. You could for example pad the last elements of a target with a special end-of-sequence token. |
Hi,
I was trying to implement the following:
1.) A convolutional net convert input to a vector of 500 real numbers z[1] .. z[500]
2.) A reccurent net which is given the same input z for 5 time steps and outputs a sequence of 5 labels.
First used the repeater, but it runs the conv net 5 times on the same input. I want the conv net to run once to get z, and then the recurrent net is given the same input z for 5 time steps.
Any suggestions?
thanks
The text was updated successfully, but these errors were encountered: