运行作业时出现以下报错:
ValueError: threshold must be numeric and non-NAN, try sys.maxsize for untruncated representation
主要是因为numpy的版本问题。
解决1:
用numpy 1.15.4和Python 3.5
解决2:
由于对numpy的滥用,所以可以调用sys包,将np.set_printoptions(threshold=np.nan)替换为np.set_printoptions(threshold=sys.maxsize)或者给threshold赋一个很大的值比如100000等等。