PYTHON错误代码及解决办法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PYTHON错误代码及解决办法相关的知识,希望对你有一定的参考价值。

(1)用sklearn进行逻辑回归时,建立完模型,由于要预测的数据量很大,无法一次全部预测,只能每次预测一个样本数据,

在每次以列表形式输入数据进行预测时出现:

/Users/donganlan/anaconda/lib/python2.7/site-packages/sklearn/utils/validation.py:386: 
DeprecationWarning: Passing 1d arrays as data is deprecated in 0.17 and willraise ValueError in 0.19.
Reshape your data either using X.reshape(-1, 1) if your data has a single feature or X.reshape(1, -1)
if it contains a single sample. DeprecationWarning)

解决办法:将输入数据由列表形式改成shape(1,-1)形式
for line in hp:
line = re.sub(r‘\\N‘, ‘0‘, line)
linearr = line.strip().split(‘,‘)
xpredict = [float(i) for i in linearr][2:118]
xpredictnd =np.array(xpredict).reshape(1,-1)
ypredict = grid.predict(xpredictnd)

以上是关于PYTHON错误代码及解决办法的主要内容,如果未能解决你的问题,请参考以下文章

django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE的解决办法(转)(代码片段

NDK: ant 错误 [javah] Exception in thread "main" java.lang.NullPointerException 多种解决办法(代码片段

python通过pip安装torch错误及解决办法ERROR: Could not find a version that satisfies the requirement torch

Adobe XD 安装失败 错误代码191 跪求大神告知解决办法

Python用Python打开IE谷歌等浏览器报错及解决办法

使用python中出现的错误及解决办法