Skip to content
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

TF_Part2_Music_Generation 2.6 model.reset_states() Error #174

Open
reeeeemo opened this issue Feb 20, 2025 · 0 comments
Open

TF_Part2_Music_Generation 2.6 model.reset_states() Error #174

reeeeemo opened this issue Feb 20, 2025 · 0 comments

Comments

@reeeeemo
Copy link

In the function generate_text (section 2.6, lab1/TF_Part2_Music_Generation), there is this code snippet:

  # Here batch size == 1
  model.reset_states()
  tqdm._instances.clear()

However, our model is a Sequential model, with an LSTM layer. I get the error model.reset_states() does not exist in tf.keras.models.Sequential. My workaround is changing the code snippet from previous to this:

  # Here batch size == 1
  for layer in model.layers:
      if hasattr(layer, 'reset_states'):
          layer.reset_states()
  tqdm._instances.clear()

Just posting if anyone else gets this error! Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant