Python3使用np.set_printoptions(threshold=np.nan)引发错误解决方法

来源:【吴恩达课后编程作业】Course 4 - 卷积神经网络 - 第四周作业 - 人脸识别
关于 np.set_printoptions()

np.set_printoptions(threshold=sys.maxsize)
本人是在vscode python3 执行的,出现如下错误:
ValueError: threshold must be non-NAN, try sys.maxsize for untruncated representation

根据提示:
先导入 sys 库 import sys

然后将 原语句改为 np.set_printoptions(threshold = sys.maxsize)

参考文章:https://blog.csdn.net/qq_45068783/article/details/109405850

你可能感兴趣的:(python,python)