-
Notifications
You must be signed in to change notification settings - Fork 588
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
Running the code in Python 3.6 #14
Comments
issue solved! thanx |
Thanks for this post, was having the same issue with that range line. Cheers! |
@Bellman281 How did you solve that issue. |
note: I had to do it manualy in different editor, then save it and restart the script in jupyter |
"TypeError: %i format: a number is required, not list" still exists after those changes. Anyone else experience this? |
Instead of range(len(data)//prediction_len), I use range(int(len(data)/prediction_len)). I think both should work. |
I changed lstm.py code , so I can test it on Python 3.6:
change xraneg to range.
change range(len(data)/prediction_len): to range(len(data)//prediction_len):
I got this error:
TypeError: %i format: a number is required, not list
any help please
The text was updated successfully, but these errors were encountered: