Open Nomlax opened 1 year ago
Check my issue #1273 and the PR fix for it #1272
This happens because you have installed the latest numpy version 1.24.0 where np.int
is depreciated. Instead install a lower version of numpy pip install "numpy<1.24.0"
.
Or you can change the np.int
to just int
. However, there are still some issues with tensorboard logging with the latest numpy version, so better to downgrade.
That's very helpful, thank you! I hope your PR gets merged soon.
@Nomlax Why is that issue closed? No fix have been merged.
My bad, I don't know. My mind saw the close button and just pressed it.
No worries @Nomlax :) Thanks for reopening. I'm trying to fix my code for past 2h, and I'm getting slightly annoyed here. I guess I over reacted. One more time, thanks :)
you can create the type that int: np.int = np.int_
This happens when I'm trying to train with:
I'd appreciate any help or guidance