-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
Passing RNN state to next batch in customer estimator? #353
Comments
The simple_rnn illustrates the case where you have multiple independent short sequences. For training on a single long sequence, look at the temperatures notebook in Course 9 (which is on sequences): |
This was referenced Feb 25, 2022
This was referenced Mar 11, 2022
This was referenced Mar 11, 2022
This was referenced May 7, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
source: https://github.com/GoogleCloudPlatform/training-data-analyst/blob/master/courses/machine_learning/deepdive/05_artandscience/d_customestimator.ipynb
In model code "simple_rnn" the state is not passed on to the next batch (if I understand it correctly):
However if we had a very long time series (SEQ_LEN large e.g. 10000) that we would want to split up into smaller chunks how could we pass on the state to the next batch (i.e. rather than starting from a zero state each time)?
QUESTION: where & how do we initialize the state, and how is the state passed on when creating a customer estimator?
The text was updated successfully, but these errors were encountered: