Basically, I use python x32 bit to load a list object from a file containing several numpy arrays (previously stored inside the brine using python x64).
I can download them correctly and check the contents, but I cannot use them.
TypeError: Cannot cast array data from dtype('int64') to dtype('int32')
How to convert an element type of arrays from a list to int32 so that I can use them with python x32.
An error occurred while trying to complete the following part:
a=np.bincount(np.hstack(data['Y']))
Looking at what's inside data['Y'] 
python numpy
valentin
source share