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