如何获取存在某个值的索引。在 numpy 中:
import numpy as np
myArr = np.array()
index = np.where(myArr == someValue)
// Output: an index value consisting rows and cols will be given
在 ND4J 中,我已经到达这里,但我不知道在条件参数中放入什么:
INDArray index = myArr.getWhere(someValue, condition=??);
换句话说,如何在 ND4J 的 INDArray 中找到一个元素?