一:argmax中axis问题 https://blog.csdn.net/qq575379110/article/details/70538051/ 总之:axis=0/1不是行/列关系 test = np.array([[1, 2, 3], [2, 3, 4], [5, 4, 3], [8, 7, 2]]) (一)axis=0 : 0表示最大范围,所有的数组都要比较到 np.argmax(test, 0) 你就这么想,0是最大的范围,所有的数组都要进行比较,只是比较的是这些数组相同位置上的数…