在将消息从url保存到文本文件以输入机器学习模型时获取ValueError

时间:2019-07-05 11:21:14

标签: python python-3.x machine-learning flask

我正在使用flask中的机器模型创建一个简单的API。出现以下错误。

file1 = open('ash.txt','w+')
file1.write(str(msg))
data = file1
vect = cv.transform(data).toarray()
my_prediction = clf.predict(vect)
#print(my_prediction)
if np.any(my_prediction) == 1:
    return jsonify("y")
elif np.any(my_prediction) == 0:
    return jsonify("naa")

错误:

ValueError:找到的数组带有0个样本(shape =(0,8672)),而最少需要1个。

味精取自网址

@app.route('/predict/<msg>')
def predict(msg,method = ['POST']):

0 个答案:

没有答案