NumPy's array dimension

Dawid Laszuk published on
1 min, 44 words

To determine dimension of an NumPy (np) array simply check length of its shape [sourcecode language="python"] >>> r = np.random.random((4,2,512,2,256)) >>> r.shape (4, 2, 512, 2, 256) >>> Dimension = len(r.shape) >>> Dimension 5 [/sourcecode]