-
Notifications
You must be signed in to change notification settings - Fork 79
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
ValueError: high is out of bounds for int32 #7
Comments
Same error^ |
I spent a little time looking this error up, it is happening on "np.random.seed(seed)" but I do not see where to change the 32 to 64 bit, but I am a noob when it comes to this kind of stuff. To get past this error I changed in the file "train_video.py" from ... And it gets past that point but now get "AssertionError: Torch not compiled with CUDA enabled", but that is something I think I can figure out. |
This can be fixed by changing this line in train_video.py to A similar line exists in train_image.py that can be solved with the same change. If unsure check the PR I made. |
Thanks |
Just installed to test, but it is giving me the error...
Traceback (most recent call last):
File "T:\Tensorflow\Programs\depplearn\tools\Text2LIVE\train_image.py", line 129, in
train_model(config)
File "T:\Tensorflow\Programs\depplearn\tools\Text2LIVE\train_image.py", line 24, in train_model
seed = np.random.randint(2 ** 32)
File "mtrand.pyx", line 763, in numpy.random.mtrand.RandomState.randint
File "_bounded_integers.pyx", line 1336, in numpy.random._bounded_integers._rand_int32
ValueError: high is out of bounds for int32
The text was updated successfully, but these errors were encountered: