在 Python 中,当我们想要遍历具有任意维度的矩阵时,我们可以使用这行代码:
for index in np.ndindex(data.shape[2:]):
例如 :
> for index in np.ndindex(3, 2, 1):
> print(index) (0, 0, 0) (0, 1, 0) (1, 0, 0) (1, 1, 0) (2, 0, 0) (2, 1, 0)
在 java 中,我们可以通过确定数量的 for 循环以一种简单的方式来实现,但前提是有关维度的知识。但在任意维度上,算法一定更复杂。
ND4J lib 中是否有任何用于迭代索引的内置方法?