1.加载npy文件
test = np.load("data/exp1/N_test.npy")
2.查看npy文件的是数据类型(但是类型混杂的暂时没清楚怎么弄,或许这个语句足够搞定吧)
print(test.dtype)
3.npy文件修改数据类型
train = tes.astype(np.float64)
4.保存为npy
np.save("data/exp1/N_test.npy", test)
5.ndarray不重复值的计数(只返回数量,没有返回{k,v}这样)
print('ndarray的元素数量: ',np.bincount(test2))
6.ndarray不重复值的计数(返回{k,v}),与5做对比
print(collections.Counter(test2))