我正在尝试使用 numpy.save 在我的系统中保存一个 Numpy 数组。代码在 Windows 上运行良好,没有错误,但在 linux 上,代码运行良好,但没有将 numpy 数组保存到所需的位置。在 Windows 中工作正常,但在 linux 上我看不到该文件
在窗户上:
import numpy as np
dataset = np.arange(100)
np.save("C:\\Users\\Bhushan\\Documents\\Test.npy",dataset)
#working fine with file saved at the location
在 Linux 上:
import numpy as np
dataset = np.arange(100)
np.save("Test.npy",dataset)
# It should save next to the program file but i couldn't see any numpy array file
可能是什么问题呢?
茅侃侃
相关分类