-
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
how to forward a sequencer module step by step? for sampling #352
Comments
I wonder if sequencer module can forward at single time-step. Maybe it must forward for sequence and can't forward a single step. |
You can use remember with Sequencer. You might find it helpful to have a look at #304 . |
Thank you for your suggestion, I have known how to deal with it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have built a model as follows
In the training phase, it will use a sequence of words as input.
But in the evaluating phase, I use a start token as input for t=0 step forward and then the input of t step will be the output of t-1 step. So I need forward the sequencer module step by step from 1 to sequence length step.
Anyone knows how to do this ?
The text was updated successfully, but these errors were encountered: