I have a number of numpy arrays which I've generated in Python 3.4 scripts and saved, i.e.
import numpy as np
np.save('array1.npy')
I seem to be running into slight issues trying to use these in Python2.7 in terms of performance (maybe more). Is there a difference?
EDIT: The numpy arrays are multidimensional, with around 1e8
elements. Scripts I run in Python2.7 with .npy files created in Python3.4 take forever/run endlessly. I suspect there are compatibility issues.