If you try to make an array with large number of dimensions in numpy, it throws an exception:
In [1]: import numpy as np
In [2]: a = np.zeros((1,) * 33)
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-2-32dc30f6e439> in <module>()
----> 1 a = np.zeros((1,) * 33)
ValueError: sequence too large; must be smaller than 32
Are there any simple workarounds to this?
What are the reasons why numpy doesn't allow creating such arrays?
numpy.zeros([2]*33)wouldn't even fit in a 32-bit address space.