我已将numpy更新为1.14.0.我使用Windows 10.我试图运行我的代码,我收到此错误:
AttributeError: module ‘numpy’ has no attribute ‘square’
这是我的进口:
%matplotlib inline
import matplotlib.pyplot as plt
import tensorflow as tf
import numpy as np
from sklearn.metrics import confusion_matrix
import math
最佳答案
我删除了numpy.py然后更新了我的numpy,它工作了!
原文链接:https://www.f2er.com/python/438831.html