trainWeights = gradDescent(np.array(trainingSet,dtype=float64), trainingLabels)
把dtype设置为float64会报错 NameError: name 'float64' is not defined
但是如果去掉"dtype=float64"会出现warning:DataConversionWarning: Data with input dtype <U3 was converted to float64 by MinMaxScaler.
warnings.warn(msg, DataConversionWarning) 提醒被转换成了float64
请问应该如何显式转换呢?
阿神2017-04-17 17:50:06
會不會,你沒有import float64
你這樣字面上這樣import當然不對啊。 。
這樣。 。
import numpy as np
dtype=np.float64
怪我咯2017-04-17 17:50:06
float64是numpy下的一個類,你如果想要前面不加修飾的使用float64需要這樣導入
import numpy as np
from numpy import float64
c = np.array([], dtype=float64)
如果沒有from numpy import float64,使用時要這樣
c = np.array([], dtype=np.float64)